@font-face {
    font-family: 'pixel';
    src: url('fonts/static/PixelifySans-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'pixel', sans-serif;
    color: black;
    font-size: 30px;
    margin: 0;
    width: 2500px;
    height: 2500px;
    background-color: white;
    image-rendering: pixelated;
    scrollbar-width: none;
}

#weather {
    position: fixed;
    inset: -100px;
    z-index: 100;

    background-image: url("../resources/pixelfartworld/rain.gif");
    background-size: 2000px 2000px;
}

#water {
    position: fixed;
    inset: -100px;
    z-index: 2;

    background-image: url("../resources/pixelfartworld/water3.gif");
    background-repeat: repeat;
    background-size: 100px 100px;

    animation: moveWater 2s linear infinite;
}

#water.night {
  background-image: url("../resources/pixelfartworld/starz.gif");
}

@keyframes moveWater {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(100px, 100px);
    }
}

.fart {
    image-rendering: pixelated;
    transform: scale(5);
    position: absolute;
    left: var(--x);
    top: var(--y);
    filter: drop-shadow(0 0px 2px rgba(255, 255, 255, 1));
    z-index: 5;
}

.regularfart {
    filter: none;
}

.banner {
    z-index: 9999;
    font-size: 35px;
    font-weight: bold;
    width: 100%;
    height: 50px;
    background-color: rgb(0, 0, 0);
    color: yellow;
    position: fixed;
    display: flex;
    gap: 20px;
    padding-left: 30px;
    justify-content: left;
}

.banner p {
    font-size: 15px;
    color: rgb(191, 191, 191);
}

.dafartworld {
    padding-top: 50px;
}

.othertext {
    font-size: 20px;
    color: yellow;
    transform: translateY(15px);
    z-index: 20;
}

.says {
    font-size: 4px;
    color: red;
    background-color: rgb(211, 211, 211, .8);
    position: fixed;
    transform: translate(20px, -30px);
    width: 50px;
    z-index: 9988;
}

.text {
    color: black;
    font-size: 3px;
    z-index: 9988;
}

.regularfart :hover {
    cursor: pointer;
    filter: none;
}

.banner img {
    height: 50px;
    filter: invert(1);
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}