body {
    margin: 0px;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
}

body img {
    width: 150px;
    height: 150px;
}

@media screen and (min-width: 1022px) {
    body img {
        width: 250px;
        height: 250px;
    }
}

.o {
    transition: all 25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    animation: rotate 25s linear infinite alternate;
}

@keyframes rotate {
    0% {
        transform: rotate(-200deg);
    }

    25% {
        transform: translate3d(-100px, 100px, -100px);
    }

    35% {
        transform: rotate(-50deg);
    }

    50% {
        transform: translate3d(100px, 100px, 100px);
    }

    65% {
        transform: rotate(-50deg);
    }

    75% {
        transform: translate3d(0px, 0px, 0px);
    }

    100% {
        transform: rotate(-100deg);
    }
}



/* v2 */
.bgImage {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
    /* gap: 20px; */
    /* z-index: 10; */
    /* background: url("/404.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; */
    box-sizing: border-box;
    padding-bottom: 100px;
    position: relative;
    /* transition: all 5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    animation: moveBg 5s linear infinite alternate; */
    backdrop-filter: blur(10px);
}

.l {
    width: 100%;
    height: 100vh;
    background: url("/404.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    animation: moveBg 5s linear infinite alternate;
}

@keyframes moveBg {
    0% {
        transform: translate3d(0, 0, 0);
    }

    20% {
        transform: translate3d(0, -2px, 0);
    }

    40% {
        transform: translate3d(0, 2px, 0);
    }

    60% {
        transform: translate3d(0, -2px, 0);
    }

    80% {
        transform: translate3d(0, 2px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}