* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin-top: 3rem;
    user-select: none;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@font-face {
    font-family: 'Netlfix sans';
    src: url(https://ik.imagekit.io/lzl0sgfim/Fonts/NetflixSans-Medium.otf?updatedAt=1781602262607);
    font-weight: 400;
}

@font-face {
    font-family: 'Netflix sans';
    src: url(https://ik.imagekit.io/lzl0sgfim/Fonts/NetflixSans-Regular.otf?updatedAt=1781602262769);
    font-weight: 500;
}

@font-face {
    font-family: 'Netflix sans';
    src: url(https://ik.imagekit.io/lzl0sgfim/Fonts/NetflixSans-Bold.otf?updatedAt=1781602262405);
    font-weight: 600;
}

.header__bg-curve {
    fill: #f0f4f8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

main {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 1rem;
    padding-inline: 1.1rem;
}

img {
    aspect-ratio: 1;
    width: 100px;
    border-radius: 50%;
    background: red;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #b2b1b1;
}

.user-info {
    display: grid;
    gap: 0.5rem;
    width: 90%;
}

.name {
    font-size: 1.8rem;
}

.info {
    font-size: 1rem;
    color: #484848;
}

.sub-info {
    color: #787878;
    font-weight: 500;
}

.bio-links {
    margin-top: 0.5rem;
    display: grid;
    gap: 1rem;
    width: 100%;
}

.bio-links a {
    text-decoration: none;
    background: #f0f4f8;
    color: black;
    font-weight: 600;
    border-radius: 2rem;
    padding: 1.15rem;
    box-shadow: 0 2px 6px #b3b3b3;
    transition: 0.3s ease;
}

.bio-links a:hover {
    transform: scale(1.02);
}

.social-icons {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.username {
    font-size: 1rem;
}

i {
    font-size: 24px;
    color: #949494;
    transition: 0.3s;
    cursor: pointer;
}

i:hover {
    color: #333;
    transform: scale(1.08);
}

.fa-instagram:hover {
    color: #ff00ee;
}

.fa-youtube:hover {
    color: #ff0000;
}

.fa-tiktok:hover {
    color: #000000;
}

.disclosure {
    font-size: 0.7rem;
    color: #8d8b8b;
}

footer {
    background: #f0f4f8;
    color: #333333;
    display: flex;
    justify-content: center;
    padding: 0.8rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    font-size: 0.75rem;
    z-index: 999;
}
