html,
body {
    width: 100%;
    height: 100%;

    padding: 0px;
    margin: 0px;

    background-color: black;

    cursor: url("../../../common/assets/images/cursors/default.png"), default;

    overflow: hidden;
    user-select: none;
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;

    object-fit: cover;

    image-rendering: pixelated;
}

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

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