*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --font: "Inter", sans-serif;
}

body{
    background-color: hsl(0, 0%, 8%);
    font-family: var(--font);
    color: hsl(0, 0%, 100%);
    font-weight: 400;
}

section{
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.container{
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 12%);
    width: 380px;
    align-items: center;
    padding-bottom: 20px;
}

.avatar-container{
    margin: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar{
    width: 88px;
    height: 88px;
    background-image: url(assets/images/avatar-jessica.jpeg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
}

.profile{
    text-align: center;
    margin-bottom: 20px;
}

.profile h1, .profile p{
    margin-bottom: 10px;
    font-weight: 600;
}

.profile p{
    color: hsl(75, 94%, 57%);
}

.description{
    margin-bottom: 15px;
}

.social-link-section{
    display: flex;
    flex-direction: column;
    width: 380px;
}

.btn{
    margin: 10px 30px;
    padding: 10px;
    border-radius: 10px;
    background-color: hsl(0, 0%, 20%);
    border: none;
}

.btn a{
    display: block;
    text-decoration: none;
    color: white;
    font-family: var(--font);
    font-weight: 600;
    width: 100%;
    height: 100%;
}

.btn:hover{
    background-color: hsl(75, 94%, 57%);
}

.btn a:hover{
    color: hsl(0, 0%, 8%);
}

.attribution { 
    font-size: 11px; text-align: center; 
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}