* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background: url(assets/fotofundo.gif) no-repeat top center/cover;

    /*
    background-image: url(assets/fotofundo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
*/
}

body * {
    font-family: "Inter" , sans-serif;
    color: whitesmoke;
}

#container {    
    width: 360px ;
    margin: auto 0px ; /*cima direita baixo esquerda*/
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(94, 91, 91, 0.774);
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}

#profile {
    text-align: center;
    padding: 24px;

}


#profile img {
    display: inline-block;
    margin: auto;
    width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 0 30px 10px #9c9a9a;
}

#profile p {
    font-weight: 500;
    line-height: 24px;
    margin-top: 8px;
    
}

#descricao p {
    display: flex;
    justify-content: center;
    color:gray;
}



/*LINKS*/
ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0 24px;
}

ul li a {

    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;


    display: flex;
    justify-content: center;
    align-items: center;

    padding:  16px 24px;
    
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    text-decoration: none;
    font-weight: 500;

    transition: background 0.2s;
}

ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid white;
}

#social-links {
    display: flex;
    padding: 24px 0;
    font-size: 24px;
    justify-content: center;
}

#social-links a {
    display:flex;
    align-items: center;
    padding: 16px;
    justify-content: center;

    transition: background 0.2s;
    border-radius: 50%;

}


#social-links a:hover{
    background: rgba(255, 255, 255, 0.2);

}

footer {
    text-align:  center;
    font-size: 14 px;
}