@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter";
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: hsl(0, 0%, 8%);
}
.container .content{
    text-align: center;
    padding: 20px 30px;
    border-radius: 10px;
    background: hsl(0, 0%, 12%);
}
.content .profile{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto;
    background-image: url(images/avatar-jessica.jpeg);
    background-size: cover;
    background-position: center;
}
.content .header h1{
    font-size: 26px;
    color: hsl(0, 0%, 100%);
}
.content .header h3{
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0;
    color: hsl(75, 94%, 57%);
}
.content .header p{
    font-size: 14px;
    margin: 20px 0 10px 0;
    color: hsl(0, 0%, 100%);
}
.content .links{
    display: flex;
    flex-direction: column;
}
.content .links a{
    padding: 14px 90px;
    margin: 7px 0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    transition: all 0.3s ease;
}
.content .links a:hover{
    background: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
}
@media (max-width: 400px) {
    .container .content{
        width: 300px;
    }
}