html, body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    transition: background 0.5s ease-in-out;
  }
  
  #logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px); /* adjust to leave space for nav */
  }
  
  #logo {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    opacity: 0;
    transform: scale(0.50);
    animation: fadeIn 3.2s ease-out forwards;
  }

  @keyframes fadeIn {
    from { 
        opacity: 0; transform: scale(0.5);
    }
    to {
        opacity: 1; transform: scale(1);
    }
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: top;
    gap: 1rem;
    background: #333;
    padding: 1rem 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

nav a:hover {
    background: #444;
}

#secret-nav {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}


@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        width: 100%;
        text-align: center;
    }
}   

.button {
    background-color: #2a2a2a; /* tuxedo gray */
    color: #ffcc00;            /* fancy gold */
    border: none;
    padding: 0.6em 1.2em;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .button:hover {
    background-color: #666;
    transform: translateY(-2px);
  }
  
  .button:active {
    background-color: #222;
    transform: translateY(1px);
  }

.footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #666;
    font-size: 0.9rem;
}
