body {
    background: url(poop.jpg) !important;
}

body::-webkit-scrollbar {
    width: 12px !important;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: orange !important;
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: blue !important;
    /* color of the scroll thumb */
    border-radius: 20px !important;
    /* roundness of the scroll thumb */
    border: 3px solid orange !important;
    /* creates padding around scroll thumb */
}


.marquee {
    width: 100%;
    border: 1px solid red;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee span {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100vw);
    }

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

.bodymovin {
    width: 200px;
    height: 200px;
    position: absolute;
    transform: translate(-30%, 0);
    top: 50px;
    left: 0;
}

.feces {
    z-index: 1;
    position: absolute;
    background-image: url(./feces.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px;
    transform-origin: center;
}

p {
    font-size: 20px;
    color: rgb(255, 216, 157);
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

a:active {
    background-color: yellow;
}

audio {
    display: none;
}