* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-image: url('../images/titleImg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Montserrat", sans-serif;
    padding: 48px 20px 60px;
    gap: 36px;
}

.landingContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 320px;
}

.menuButtons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.menuLink {
    text-decoration: none;
}

.menuButton {
    width: 260px;
    height: 88px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 5px solid white !important;
    background-color: #acacac6b !important;
    color: white;
    transition: box-shadow 0.2s;
}

.menuButton:hover {
    filter: brightness(0.93);
  box-shadow: 0px 0px 26px 3px rgba(88,194,227,0.75);
-webkit-box-shadow: 0px 0px 26px 3px rgba(88,194,227,0.75);
-moz-box-shadow: 0px 0px 26px 3px rgba(88,194,227,0.75);

}

h1 {
    font-size: 110px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 0 #CCCCCC, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15), 2px 2px 3px rgba(206,89,55,0);
}

h1 .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(-220px) rotate(-50deg);
    animation: letterDrop 0.9s cubic-bezier(0.2, 0.85, 0.25, 1.15) forwards;
    animation-delay: calc(var(--i) * 0.07s);
}

@keyframes letterDrop {
    0% {
        opacity: 0;
        transform: translateY(0px) rotate(-20deg);
    }

    70% {
        opacity: 1;
        transform: translateY(1px) rotate(6deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

h1 .space {
    display: inline-block;
    width: 0.35em;
}

