.sicons,
body {
    justify-content: center;
    display: flex;
}
#c,
video {
    object-fit: cover;
    object-position: center;
}
#c,
.overlay,
video {
    height: 100%;
    width: 100%;
    position: fixed;
}
.pfp .dev,
.pfp .statusWrap {
    top: 50%;
    transform: translateY(-50%);
}
.enter,
.pfp .statusWrap,
.sicons,
.swrap,
body {
    display: flex;
}
body {
    background-color: #000;
    align-items: center;
    margin: 0;
    -moz-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.overlay {
    z-index: 0;
    pointer-events: none;
    background: url(img/dot.png) 0 0/3px;
    opacity: 1;
}
video {
    z-index: -1;
}
#c {
    z-index: -2;
}
#magicPointer {
    z-index: 9999;
}
.rainbow {
    animation: 2.5s linear infinite rainbow;
}
.sbox {
    opacity: 0;
    z-index: 1;
    transition: 0.1s ease-in-out;
}
.swrap {
    flex-direction: column;
    align-items: center;
    position: relative;
}
.pfp .dev,
.pfp .statusWrap,
.sicons {
    position: absolute;
}
.pfp {
    border-radius: 50%;
    background-image: url(https://i.imgur.com/ivoOavL.png);
    height: 128px;
    width: 128px;
    background-size: cover;
    border: 5px solid #090909;
    aspect-ratio: 1/1;
}
.pfp .dev,
.pfp .status {
    padding: 4px;
    border-radius: 14px;
    background-color: #090909;
    height: 24px;
    transition: 0.1s ease-in-out;
}
.pfp .dev {
    right: -12px;
}
.pfp .dev:hover {
    cursor: pointer;
    filter: hue-rotate(90deg);
}
.dev .pfp .dev .st1 {
    animation: 2.5s linear infinite rainbowFill;
}
.pfp .statusWrap {
    left: -12px;
    align-items: center;
    justify-content: center;
}
.pfp .status {
    position: relative;
    z-index: 1;
}
.pfp .statusWrap.active .status {
    transform: rotate(90deg) scale(0.8);
}
.pfp .status:hover {
    cursor: pointer;
}
.pfp .statusWrap span {
    color: #fff;
    background-color: #090909;
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    font-family: monospace;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px 0 0 14px;
    font-size: 0;
    transition: 0.1s ease-in-out;
}
.pfp .statusWrap.active span {
    left: -166px;
    width: 156px;
    font-size: 13px;
}
.dev .statusWrap span {
    color: #2ea967;
}
.sicons {
    background-color: #090909;
    gap: 14px;
    width: fit-content;
    padding: 10px;
    border-radius: 10px;
    bottom: -24px;
}
.sicons img {
    height: 24px;
    transition: 0.1s ease-in-out;
}
.sicons img:hover {
    transform: scale(1.15);
    cursor: pointer;
}
.enter {
    z-index: 99;
    width: 100%;
    height: 100%;
    position: fixed;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
    transition: 0.3s ease-in-out;
}
.enterClear {
    backdrop-filter: blur(0);
}
.enter img {
    height: 64px;
    opacity: 1;
    transition: 0.1s ease-in-out;
}
.enter img:hover {
    cursor: pointer;
    transform: scale(1.2);
}
@keyframes rainbow {
    0%,
    100% {
        color: red;
    }
    8% {
        color: #ff7f00;
    }
    16% {
        color: #ff0;
    }
    25% {
        color: #7fff00;
    }
    33% {
        color: #0f0;
    }
    41% {
        color: #00ff7f;
    }
    50% {
        color: #0ff;
    }
    58% {
        color: #007fff;
    }
    66% {
        color: #00f;
    }
    75% {
        color: #7f00ff;
    }
    83% {
        color: #f0f;
    }
    91% {
        color: #ff007f;
    }
}
@keyframes rainbowFill {
    0%,
    100% {
        fill: rgb(255, 0, 0);
    }
    8% {
        fill: rgb(255, 127, 0);
    }
    16% {
        fill: rgb(255, 255, 0);
    }
    25% {
        fill: rgb(127, 255, 0);
    }
    33% {
        fill: rgb(0, 255, 0);
    }
    41% {
        fill: rgb(0, 255, 127);
    }
    50% {
        fill: rgb(0, 255, 255);
    }
    58% {
        fill: rgb(0, 127, 255);
    }
    66% {
        fill: rgb(0, 0, 255);
    }
    75% {
        fill: rgb(127, 0, 255);
    }
    83% {
        fill: rgb(255, 0, 255);
    }
    91% {
        fill: rgb(255, 0, 127);
    }
}
@media screen and (max-width: 999px) {
    .statusWrap {
        display: none !important;
    }
}
