body {
    background-color: #1e1e1e;
    margin: 0;
    overflow-x: hidden;
    font-family: uni_font;
    color: white;
    background: url(img/background.png) repeat center top fixed;
    background-size: cover;
}

#main {
}

@font-face {
    font-family: "Britanica Black";
    src: url(/font/britanica-black.ttf);
}

@font-face {
    font-family: "Britanic";
    src: url(/font/Britannic\ Bold\ Regular.ttf);
}

@font-face {
    font-family: "Open Sauce Two";
    src: url(/font/open-sauce-two_5.0.11/ttf/open-sauce-two-latin-400-normal.ttf);
}

.britanica-black {
    font-family: "Britanica Black";
}

.britanic {
    font-family: "Britanic";
}

.open-sauce-two {
    font-family: "Open Sauce Two";
}

.bowlby-one-regular {
    font-family: "Bowlby One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.memes > img {
    max-width: 600px;
}

@keyframes beltScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-245.5657px);
    }
}

#belt {
    animation: beltScroll 1s linear infinite;
}

#move-indicator {
    animation: grow 1s infinite;

}

@keyframes grow {
    0%,
    25%,
    75%,
    100% {
        transform: rotate(0deg) scale(0.95);
    }

    35% {
        transform: rotate(5deg) translateX(5px);
    }

    45% {
        transform: rotate(-5deg) translateX(-5px);
    }

    55% {
        transform: rotate(5deg) translateX(5px);
    }

    65% {
        transform: rotate(-5deg) translateX(-5px);
    }
}

@media (max-width: 768px) {
    .memes > img {
        max-width: 100%;
    }

    #ca {
        font-size: 11px !important;
    }

    #intro {
        justify-content: center;
    }

    #cat {
        right: 33%;
    }
}