@font-face {
    font-family: PatrickHand-Regular;
    src: url(/assets/fonts/PatrickHand-Regular.ttf);
}

body {
    background: linear-gradient(rgb(0, 0, 0), rgb(36, 28, 18));
    color: white;
    height: 100%;
    margin: 0;
    padding: 0;
}

footer {
    font-family: PatrickHand-Regular;
    bottom: 0;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
}

.logo img {
    width: 100%;
}

#content {
    width: 95%;
    margin: auto;
    max-width: 60rem;
    padding-top: 32px;
}

.section {
    font-family: PatrickHand-Regular;
    font-size: 48px;
    width: fit-content;
    padding-top: 32px;
    padding-bottom: 32px;
    margin: auto;
    text-align: center;
}

.section a {
    color: rgb(255, 200, 156);
    text-decoration: none;
}

.section a:hover {
    animation: bounce .4s ease infinite alternate;
}

.section a:visited {
    color: rgb(167, 75, 0);
}

@keyframes bounce {
    0% {
        color: rgb(255, 200, 156);
    }
    100% {
        color: rgb(167, 75, 0);
    }
}

@media only screen and (max-width: 800px) {
    .cover {
        flex-direction: column-reverse;
    }

    .cover .cover-text {
        width: 100%;
    }
    
    .cover .logo {
        max-width: 60%;
    }
}