*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    height:100vh;
    overflow:hidden;
    color:white;
}

.background-video{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-2;
}

.overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(6px);

    z-index:-1;
}

.container{
    position:relative;
    z-index:2;

    width:100%;
    max-width:500px;

    margin:auto;
    padding:50px 25px;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.avatar{

    width:140px;
    height:140px;

    border-radius:50%;
    object-fit:cover;

    border:4px solid white;

    box-shadow:0 20px 50px rgba(0,0,0,.5);
}

h1{
    margin-top:20px;
    font-size:34px;
}

.bio{

    margin-top:8px;

    color:#d3d3d3;
    text-align:center;
    line-height:1.5;
}

.links{

    width:100%;
    margin-top:40px;

    display:flex;
    flex-direction:column;
    gap:18px;
}

.links a{

    text-decoration:none;

    color:white;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    padding:18px;

    border-radius:15px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:15px;

    transition:.25s;
}

.links a:hover{

    background:white;
    color:#111;

    transform:translateY(-4px);

    box-shadow:0 10px 30px rgba(255,255,255,.2);
}

.socials{

    display:flex;

    gap:20px;

    margin-top:40px;
}

.socials a{

    color:white;

    font-size:26px;

    transition:.25s;
}

.socials a:hover{

    transform:scale(1.3);

    color:#4da6ff;
}

@media(max-width:600px){

    .container{

        padding-top:30px;
    }

    h1{

        font-size:28px;
    }

    .avatar{

        width:110px;
        height:110px;
    }

}