@font-face {
    font-family: Opsilon;
    src: url("../assets/Opsilon-Regular.ttf");
}

body {
    font-family: "Opsilon", "Arial", "Helvetica", sans-serif;
    font-size:6px;
    user-select: none;
    background: #222224;
    overflow: hidden;
}

span.mention {
    position: relative;
    color: var(--color);
    padding: 0.05em 0.1em;
    &::before {
        content: ' ';
        position: absolute;
        top:0;
        left:0;
        width: 100%;
        height: 100%;
        background-color: var(--color);
        opacity: 0.25;
    }
}

.authorContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    margin: 0.5% 1%;
    &>img {
        border-radius: 50%;
        min-width: 96px;
        width: 13vw;
    }
}
.author {
    position: relative;
    font-size: 800%;
    margin-top: -.5em;
    color:var(--color);
    -webkit-text-stroke: 0.04em #fff;
    text-shadow: 0.08em 0.06em 0 #0007, 0 0 0.1em var(--color), 0 0 0.25em var(--color), 0 0 0.1em var(--color);
}

.contentContainer {
    z-index: -1;
    position: absolute;
    top:3vh;
    min-height: 50vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    &>p {
        bottom: -2vh;
        line-height: 82%;
        width: 100%;
        position: absolute;
        text-align: center;
        font-size: 800%;
        margin: 0;
        color: #fff;
        -webkit-text-stroke: 0.04em #000;   
        text-shadow: 0.08em 0.06em 0 #0007;
    }
    &>img,>video {
        width:  90vw;
        height: 94vh;
        aspect-ratio: auto;
        object-fit: contain;
    }
}
@media (min-width: 512px) {
    body {
        font-size:7px;
    }
}
@media (min-width: 800px) {
    body {
        font-size:8px;
    }
}
@media (min-width: 1100px) {
    body {
        font-size:10px;
    }
}
@media (min-width: 1300px) {
    body {
        font-size:12px;
    }
}
@media (min-width: 1600px) {
    body {
        font-size:14px;
    }
}
@media (min-width: 1900px) {
    body {
        font-size:16px;
    }
}