#bg {
    display: block;
    position: fixed;
    padding: none;
    margin: auto;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    background-color: black;
}
#bg::after {
    content: "";
}
body {
    background-color: black;
    color: #FAF9F6;
    font-family: Cormorant Infant;
    font-size: 1.1rem;
    letter-spacing: 0.18rem;
    word-spacing: 0.275rem;
    line-height: 1.8rem;

    padding: 0 9.6vw;
    text-align: center;

    scroll-behavior: smooth;
}
::selection {
    background: rgba(199, 21, 21, 0.7);
  }
p, h1 {
    margin: 17.5vmin 0;
    text-shadow: 0 0.1rem 0.2rem #ffa09540;
    font-weight: 300;
}

p {
    text-transform: lowercase;
}

h1 {
    line-height: 2.5rem;
    font-style: italic;
    font-weight: bold;
}

.decor {
    letter-spacing: 0.5em;
    font-style: normal;
    font-weight: 400;
}

.row {
    display: flex;
    height: 10vw;
}
.row img {
    height: 10vw;
    user-select: none;
}

.column {
    flex: 50%;
}

*::-webkit-scrollbar {
width: 1.6vh;
}

*::-webkit-scrollbar-track {
background: none;
}

*::-webkit-scrollbar-thumb {
background-color: #202020;
border-radius: 1.6vh;
border: 0.45vh solid transparent;
background-clip: content-box;
}

.left, .right, .single-eye {
    position: absolute;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    border-radius: 100%;
    cursor: pointer;
}

.frame-1 {
   opacity: 1;
   pointer-events: all;
}

.left {
    left: 40vw;
    right: 0;
}
.right {
    left: 0;
    right: 40vw;
}

.single-eye {
    left: 0;
    right: 3.75vmax;
}

.brain, .scribble {
    width: clamp(240px, 40%, 30vmax);
}

.brain {
    animation: rotate 0.8s step-start infinite forwards;
    border-radius: 35%;
    cursor: help;
}

.scribble {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    pointer-events: none;
}

@keyframes rotate {
    0% {transform: rotate(7deg);}

    25% {transform: rotate(-9deg)}

    50% {transform: rotate(8deg)}

    75% {transform: rotate(-6deg)}
}

@media (max-width:970px), (orientation: landscape) {
    .pc-only {
        display: inline-block;
    }
    .mobile-only {
        display: none;
    }
}

@media only screen and (max-width:970px) and (orientation: portrait) {
    .pc-only {
        display: none;
    }
    .mobile-only {
        display: inline-block;
    }
    .row {
        height: 17.5vmax;
    }
    .row img {
        height: 17.5vmax;
    }
}

audio, embed {
    position: absolute;
    z-index: -9999;
}

[data-scroll] {
    transform: translate3d(0,0,0); /*speeds up the blur filter by forcing the browser to use GPU acceleration */
    transition: filter 0.5s ease-in-out, text-shadow 0.6s ease-in-out, opacity 0s;
}
[data-scroll="in"] {
    filter: blur(0);
    text-shadow: none;
}
[data-scroll="out"] {
    filter: blur(0.25rem);
    text-shadow: 0 0.25rem 0.25rem #ffffff;
}