@import url('https://fonts.googleapis.com/css2?family=Geist+Pixel&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');


body {
    font-family: 'IBM Plex Mono';
    color: white;
    width: 100vw;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-color: black;
}

@media screen and (min-width: 700px) {
    body {
        overflow: hidden;
    }
}

.bodysnatcher {
    position: absolute;
    width: 20em;
    height: 20em;
    z-index: -1;
    background-color: #dbfe01;
}

.wrap {
    min-height: 40vh;
}

img {
    object-fit: cover;
    user-select: none;
}

.desc {
    color: white;
}

.stan {
    width: 75%;
    margin-left: 5%;
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: start;

    .bodysnatcher {
        top: 10%;
        left: 2%;
    }

    ul::selection {

        background-color: #dbfe01;
        color: black;
    }

    li::marker {
        color: #0000FD;
    }

}

.analogue {
    width: 75%;
    margin-left: 19%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    text-align: justify;
    text-align-last: right;

    ul {
        text-align: justify;
        text-align-last: left;
        list-style-position: inside;
        mix-blend-mode: difference;
    }

    ul::selection {
        background-color: #0000FD;
        color: white;
    }

    li::marker {
        color: #dbfe01;
    }

    .bodysnatcher {
        right: 2%;
        bottom: 10%;
        background-image: url('../media/images/analogue.jpg');
        background-repeat: no-repeat;
        background-size: 87% 100%;
    }
}

.st {
    background-color: #dbfe01;
    color: black;
}

.st::selection {
    background-color: white;
}

.an {
    background-color: #0000FD;
    color: white;
}

.an::selection {
    background-color: black;
}

.thx {
    width: 99%;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    padding-bottom: 10px;
}

.thx::selection {
    background-color: white;
    color: black;
}

a {
    color: white;
    text-decoration: underline;
}

.stanalogue {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    text-align: center;

    img {
        width: 15vh;
    }
}

@media screen and (max-width: 700px) {

    body {
        overflow-x: hidden;
        align-items: flex-start;
    }

    .bodysnatcher {
        display: none;
    }

    .wrap {
        width: 100vw;
        margin-bottom: 20vh;
    }

    .stan {
        margin: 0;
        margin-top: 17vh;
    }

    .analogue {
        margin-top: 10vh;
        margin-left: 17vw;
    }

}