@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600&display=swap');

body, html {
    margin: 0;
    padding: 0;
    background-color: #111;
    overflow: hidden;
}

.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 100vw;
    height: 100dvh;
    position: relative;
    background-color: #111;
}

/* red rule at top */
.landing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #166534;
}

.welcomelogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(80vw, 80vh);
    z-index: 1;
    filter: invert(1);
    animation: spin 60s linear infinite;
    pointer-events: none;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@media screen and (max-width: 768px) {
    .welcomelogo {
        width: 90vw;
    }
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 0;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.landing-button {
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.12em;
    color: #F2EDE4;
    background-color: transparent;
    border: 2px solid #F2EDE4;
    margin-right: -2px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-button:hover {
    background-color: #166534;
    border-color: #166534;
    color: #F2EDE4;
    transform: none;
}
