body {
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    background: #f5ebd2;
    color: #0f3422;
    margin: 0;
    padding: 40px 0;
  }

  #countdown-container {
    font-family: 'Oswald', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: centser;
  }

  #countdown-day, #hours-container, #minutes-container, #seconds-container {
    margin: 5px 0; /* Adjust spacing */
  }

  #countdown-day, #hours-container, #minutes-container, #countdown-title {
    opacity: 0; /* Initially hidden */
  }

  #countdown-title {
    transition: background-color 0.3s ease, opacity 0.3s ease;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.5s; /* Start immediately */
  }

  #countdown-day {
    transition: background-color 0.3s ease, opacity 0.3s ease;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 1s; /* Start immediately */
    font-size: 5em; /* Make the day larger */
  }
  #hours-container {
    transition: background-color 0.3s ease, opacity 0.3s ease;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 2s; /* Start after countdown-day */
    font-size: 3em;
  } 
  #minutes-container {
    transition: background-color 0.3s ease, opacity 0.3s ease;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 3s; /* Start after hours-container */
    font-size: 1.5em;
  } 
  #seconds-container {
    transition: background-color 0.3s ease, opacity 0.3s ease;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 4s; /* Start after hours-container */
    font-size: 1em;
  }

  #logo {
    width: 70%;
    max-width: 350px;
    height: auto;
    margin-bottom: 5px;
    animation: fadeIn 2s ease-in-out forwards;
  }
  
  #menu {
    margin-top: 20px;
  }
  
  .menu-item {
    font-family: 'Oswald', sans-serif;
    margin: 25px auto;
    padding: 20px 40px;
    border: none;
    background-color: #0f3422;
    color: #f5ebd2;
    font-size: 20px;
    font-weight: lighter;
    text-transform: uppercase;
    text-align: left;
    display: block;
    width: 80%;
    max-width: 350px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.3s ease;
    animation: fadeIn 2s ease-in-out forwards var(--delay, 0s);
    border-radius: 5px;
    
  }
  
  .menu-item:hover {
    background-color: #bc6426;
    color: #0f3422;
  }
  
  #language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    padding: 5px 10px;
    background-color: #0f3422;
    color: #f5ebd2;
    border: none;
    border-radius: 5px;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  #menuFrame {
    width: 100%;
    height: 80vh;
    display: none;
    border: none; /* Remove border for a cleaner look */
  }
  