*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    height:100vh;
    overflow:hidden;
    color:rgb(158, 1, 1);
}

.background {
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-2;
}

.overlay{
    position: fixed;
    inset:0;

    background:rgba(156, 0, 0, 0);

    backdrop-filter:blur(1px);

    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 rgb(121, 0, 0);

    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:rgb(0, 0, 0);

    background:rgba(131, 0, 0, 0.411);

    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:rgb(129, 0, 0);
    color:#111;

    transform:translateY(-4px);

    box-shadow:0 10px 30px rgb(68, 0, 0);
}

.socials{

    display:flex;

    gap:20px;

    margin-top:40px;
}

.socials a{

    color:rgb(160, 0, 0);

    font-size:26px;

    transition:.25s;
}

.socials a:hover{

    transform:scale(1.3);

    color:#aa0000;
}

@media(max-width:600px){

    .container{

        padding-top:30px;
    }

    h1{

        font-size:28px;
    }

    .avatar{

        width:110px;
        height:110px;
    }

}