/* @import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap'); */

* {
    margin: 0;
    padding: 0
}

body,
html {
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 100%
}

.sf-snow-flake {
    position: fixed;
    top: -20px;
    z-index: 9999;
}

.sf-snow-anim {
    top: 110%;
}

.wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/girl.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: relative
}

.wrap::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, .7)
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%
}

.main-block {
    display: block;
    z-index: 3;
    width: 320px
}

.profile,
.social-tab {
    background: rgba(17, 17, 17);
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    box-sizing: border-box;
    border-radius: 10px
}

.profile {
    background: rgba(17, 17, 17, .6);
    backdrop-filter: blur(3px)
}

.profile {
    padding: 10px 20px;
    line-height: 1
}

.profile img {
    max-width: 100%;
}

.profile-banner {
    position: absolute;
    background: url(../images/neko2.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 120px;
    left: 0;
    top: 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    z-index: -2;
}

.profile-banner::after {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.social-tab {
    --border-width: 2px;
    margin-top: 10px;
    padding: 10px;
    position: relative;
    border-radius: 10px;
    width: calc(100% - var(--border-width) * 2);
    margin-left: var(--border-width);
}

.social-tab::after {
    position: absolute;
    content: "";
    top: calc(-1 * var(--border-width));
    left: calc(-1 * var(--border-width));
    z-index: -1;
    width: calc(100% + var(--border-width) * 2);
    height: calc(100% + var(--border-width) * 2);
    background: linear-gradient(60deg, #5f86f2, #a65ff2, #f25fd0, #f25f61, #f2cb5f);
    background-size: 300% 300%;
    border-radius: 12px;
    animation: moveGradient 4s alternate infinite
}

.links-block {
    display: flex;
    flex-wrap: nowrap;
    align-content: space-between;
    justify-content: center;
    width: 100%
}

.links-block img {
    width: 25px
}

.links-block a {
    margin: 0 5px;
    line-height: 0;
    cursor: pointer
}

#loading-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(-105deg, #009acc, #4C7331);
    z-index: 1337;
    transition: all 1s ease-out
}

.spinner {
    animation: rotate 2s linear infinite;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px
}

.spinner .path {
    stroke: #93bfec;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite
}

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124
    }
}


@media screen and (max-width:768px) {
    .wrap {
        background-image: linear-gradient(-40deg, #8000806c, #9f2b686c);
        background-color: transparent;
    }


    .wrap::after {
        background: transparent
    }

    .profile-banner {
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        width: 100%;
        height: 71px;
    }
}


@media screen and (min-width:768px) {

    .main-block,
    .profile,
    .social-tab {
        width: 480px
    }

    .profile {
        padding: 30px;
        line-height: 1
    }

    .social-tab {
        margin-top: 20px;
        padding: 20px
    }

    .links-block img {
        width: 32px
    }

    .links-block a {
        margin: 0 10px
    }
}

@keyframes moveGradient {
    50% {
        background-position: 100% 50%
    }
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none
}
body::-webkit-scrollbar {
  display: none;
}
