@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

body {
    background-color: #fef1e6;
    font-family: 'Georgia', serif;
    color: brown;
    height: 100%;
    
  }

  .overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    color: grey;
    text-align: left;
    padding: 20px;
  }
  
  h1 {
    font-size: 2rem;
    margin-top: 40px;
  }
  
  .subtitle {
    margin-bottom: 20px;
    font-size: 1rem;
    color: gray;
  }
  
  .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .card {
    width: 300px;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  
  .card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }
  
  .card p {
    margin: 10px 0;
    font-weight: bold;
  }
  
  #signOutBtn {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    font-size: 16px;
    background-color: #f44336; /* red */
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
    z-index: 1000; /* stay on top */
  }
  
  #signOutBtn:hover {
    background-color: #d32f2f;
  }
  
  .title {
    font-size: 4rem;
    letter-spacing: 1px;
    line-height: 1.2;
  }
  
  .subtitle {
    margin-top: 10px;
    font-size: 1.2rem;
    color: black;
  }