@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    box-sizing: border-box;
    overflow: hidden;
}

body {
    font-family: Manrope;
    background-color: black;
    padding: 0;
    margin: 0;
}

.main-block {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.main-block__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    width: 660px;
}

.main-block__bio {
    padding: 4px;
    margin: 0px 0px 0px 0px;
    gap: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.main-block__img {
    width: 348px;
    height: 348px;
    border-radius: 50%;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 2px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
}

.main-block__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.main-block__title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 68px;
    font-size: 68px;
    letter-spacing: -2%;
    margin: 0px 0px 0px 0px;
    text-align: center;
}

.main-block__description {
    margin: 0px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-block__text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 32px;
    font-size: 24px;
    letter-spacing: -2%;
    margin: 0px 0px 0px 0px;
    text-align: center;
    padding: 0px 0px 0px 0px;
}

.ShadowText {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 32px;
    font-size: 24px;
    letter-spacing: -2%;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.main-block__co-founder {
    margin: 0px 0px 0px 0px;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0px 0px 0px 0px;
}

.main-block__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
    margin: 0px 24px 24px 0px;
    gap: 10px;

}

.link__image {
    width: 28px;
    height: 28px;
    margin: 0 8px 0 0;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 50%;
    object-fit: cover;
}

.link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 4px 12px 4px 4px;
    margin: 0 0 0 0;
    outline: none;
    border-radius: 50px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 36px;
    line-height: 36px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    user-select: none;
    appearance: none;
    touch-action: manipulation;
    vertical-align: top;
    transition: box-shadow 0.2s;
}

.link:hover {
    transition: all 0.2s;
    background-color: rgba(255, 255, 255, 0.9);
    color: rgba(0, 0, 0, 0.7);
}

.links:active {
    background-color: #1a1a1a;
}

.links:disabled {
    background-color: #eee;
    border-color: #eee;
    color: #444;
    cursor: not-allowed;
}


.link-text__image {
    width: 28px;
    height: 28px;
    margin: 0 8px 0 0;
    padding: 2px;
    background-color: rgba(255, 255, 255, 0.30);
    border-radius: 50%;
    object-fit: cover;
}

.link-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 4px 8px 4px 4px;
    margin: 0 0 0 0;
    outline: none;
    border-radius: 50px;
    height: 32px;
    line-height: 32px;
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    user-select: none;
    appearance: none;
    touch-action: manipulation;
    vertical-align: top;
    transition: box-shadow 0.2s;
}

.link-text:hover {
    transition: all 0.2s;
    background-color: rgba(255, 255, 255, 0.9);
    color: rgba(0, 0, 0, 0.7);
}

.link-text:active {
    background-color: #1a1a1a;
}

.link-text:disabled {
    background-color: #eee;
    border-color: #eee;
    color: #444;
    cursor: not-allowed;
}

.main-block__background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.7vh;
    height: 100vh;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.main-block__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

@media (min-aspect-ratio: 16/9) {
    .main-block__background iframe {
        width: 100vw;
        height: 56.25vw;
    }
}

/* =========================
   MOBILE (<= 660px)
   ========================= */

@media (max-width: 660px) {

    .main-block__container {
        width: 100%;
        gap: 32px;
    }

    .main-block__bio {
        gap: 24px;
    }

    .main-block__img {
        width: 164px;
        height: 164px;
    }

    .main-block__info {
        gap: 4px;
    }

    .main-block__title {
        font-size: 48px;
        line-height: 48px;
        margin: 0 0 0 0;
        letter-spacing: -2%;
    }

    .main-block__text {
        font-size: 16px;
        line-height: 24px;
    }

    .ShadowText {
        font-size: 16px;
        line-height: 24px;
    }

    .main-block__links {
        margin: 0 32px 0 32px;
        gap: 8px;
        max-width: 540px;
    }

    .link {
        font-size: 14px;
        height: 32px;
        line-height: 18px;
        padding: 8px 14px 8px 4px;
    }

    .link__image {
        width: 24px;
        height: 24px;
    }

    .link-text__image {
        width: 24px;
        height: 24px;
    }

    .link-text {
        padding: 4px 0px 4px 4px;
        height: 24px;
        line-height: 24px;
        font-size: 16px;
    }

    .main-block__co-founder {
        gap: 4px;
    }

}

/* =========================
   SMALL MOBILE (<= 375px)
   ========================= */


@media (max-width: 375px) {

    .main-block__container {
        width: 100%;
        gap: 32px;
    }

    .main-block__bio {
        gap: 24px;
    }

    .main-block__img {
        width: 128px;
        height: 128px;
    }

    .main-block__info {
        gap: 4px;
    }

    .main-block__title {
        font-size: 32px;
        line-height: 32px;
        margin: 0 0 0 0;
        letter-spacing: -2%;
    }

    .main-block__text {
        font-size: 14px;
        line-height: 22px;
    }

    .ShadowText {
        font-size: 14px;
        line-height: 22px;
    }

    .main-block__links {
        margin: 0 16px 0 16px;
        gap: 4px;
        max-width: 375px;
    }

    .link {
        font-size: 14px;
        height: 32px;
        line-height: 18px;
        padding: 8px 14px 8px 4px;
    }

    .link__image {
        width: 24px;
        height: 24px;
    }

    .link-text__image {
        width: 22px;
        height: 22px;
    }

    .link-text {
        padding: 4px 0px 4px 4px;
        height: 22px;
        line-height: 22px;
        font-size: 14px;
    }
}