@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

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

body{
    position: relative;
    height: 100vh;
    font-family: sans-serif;
    background: #141414;
    font-family: "inter",sans-serif;
}
.container{
position: absolute;
top: 50%;
left: 50%;
height: fit-content;
transform: translate(-50% , -50%);
background-color: rgb(34, 31, 31);
text-align: center;
padding: 2rem;
border-radius: 5%;
cursor:default;
}

.info{
color: rgb(219, 192, 192);
}

img{
    border-radius: 50%;
    width: 80px;
    margin: 5px 0 15px 0;
}
#name{
    padding-bottom: .5rem;
    font-size: 1.5rem;
}

#location{
    margin-bottom: 2rem;
font-size: .95rem;
color: #9ebd3d;
font-weight: 700;
}
#title{
font-size: .9rem;
margin-bottom: 1.5rem;

}
.social-links{
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.links{
    padding: 1rem;
    border-radius: .6rem;
    background-color: #333333;
    color: white;
    width: 18rem;
    margin: 0 1rem;
    border-style:hidden ;
    font-weight: 700;
}
.links:hover{
    background-color: #9ebd3d;
    color: black;
    cursor: pointer;
}
