@font-face {
    font-family: 'Patrick Hand';
    src: url('../media/patrick-hand.woff2') format('woff2');
}

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    image-rendering: crisp-edges;
}

body {
    background-image: url("/media/background.svg");
    background-position: center;
    background-size: 60px;
}

.clouds {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 50%;
}

.arrow {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
    z-index: 98;
}

.title {
    position: absolute;
    top: 1rem;
    height: 10%;
    width: auto;
    align-items: center;
    z-index: 90;
    max-width: 80%;
    filter: drop-shadow(0 0 0.75rem black);
}

/* Mobile */
@media (max-width: 599px) {
    .arrow {
        width: 25px;
        height: 25px;
    }
}