@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
}
body{
    background-color: hsl(0, 0%, 8%);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    width: 20%;
    height: 65%;
    background-color: hsl(0, 0%, 12%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container .info{
    margin-top: 40px;
    margin-bottom: 30px;
    height: 30%;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color:white;
}
.info img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.info h3{
    margin: 30px 0 10px 0;
    letter-spacing: 1px;
    font-size: 20px;
}
.info h4{
    color: hsl(75, 94%, 57%);
    font-size: 13px;
    margin-bottom: 25px;
    font-weight: 700;
}
.info p{
    font-weight: 400;
    font-size: 14px;
    color: rgb(204, 204, 204);
}
.container .links{
    width: 90%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.links ul{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
    
}
.links ul li{
    background-color:hsl(0, 0%, 20%);
    width: 85%;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
    font-weight: bold;
    margin: 10px 0;
}
.links ul li a{
    text-decoration: none;
    color: white;
}