body {
    width: 100vw;
    height: 100vh;

    display: flex;
}

.content {
    width: 70%;

    @media (max-width: 767px) {
        width: 100%;
    }
}

.bg-video-container {
    position: fixed;
    inset: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    transform: translateX(-50%) translateY(-50%);

    @media (max-width: 767px) {
        transform: translateX(-30%) translateY(-50%);
    }
}

.avatar-mobile {
    width: 60%;
    border-radius: 30px;
    margin-bottom: 16px;

    @media (min-width: 768px) {
        display: none;
    }
}

.name {
    @media (max-width: 767px) {
        padding: 0 10px;
    }
}

.avatar {
    width: 30%;
    padding: 50px;
    overflow: hidden;
    height: 100%;
    @media (max-width: 767px) {
        display: none;
    }

    img {
        height: 100%;
        border-radius: 20px;
        object-fit: cover
    }
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 20px;
    padding: 50px;

    @media (max-width: 767px) {
        padding: 50px 0;
        justify-content: flex-start;
        align-items: center;
    }
}

.socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 20px;

    @media (max-width: 767px) {
        row-gap: 20px;
        margin: 0 20%;
    }
    @media (min-width: 2560px) {
        flex-wrap: nowrap;
        justify-content: center;
        column-gap: 200px;
    }

    .social-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;

        @media (max-width: 767px) {
            width: 45%;
        }
    }

    .telegram,.vk,.steam,.phone {
        width: 250px;
        border-radius: 50px;

        @media (max-width: 767px) {
            width: 100%;
            border-radius: 16px;
        }
        @media (min-width: 2560px) {
            width: 400px;
        }
    }
}
