/*index*/
body, html {
    margin: 0;
    padding: 0;
    background-color: blanchedalmond;
    overflow: hidden;
}
.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: goldenrod;
    width: 100vw;
    height: 100vh;
    position: relative;
}
.landing-button {
    padding: 15px 30px;
    font-size: 30px;
    color: rgb(0, 0, 0);
    background-color: rgb(176, 57, 79);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    display: flex;
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2; 
}
.landing-button:hover {
    background-color: rgb(176, 57, 79);
    transform: translateY(-5px);
    color: rgb(255, 255, 255);
}
.welcomelogo {
    position: absolute;
    width: 50%;
    animation: spin 60s linear infinite;
    z-index: 1;
    overflow: hide;
}
@keyframes spin {
    from {transform: rotate (0deg);
    }
    to {transform: rotate(360deg);
    }
}