@font-face {
    font-family: Inter;
    src: url(assets/fonts/Inter-VariableFont_slnt\,wght.ttf);
}
.main-panel{
    margin: auto;
    background-color: hsl(0, 0%, 12%);
    width: 100%;
    max-width: 320px;
    border-radius: 5px;
    text-align: center;
}
@media (min-width:768px){
    .main-panel{
        max-width: 450px;
    }
}
.name{
    font-size: 25px;
    color: white;
    font-weight: bold;
    font-family: Inter;
}

.links {
    background-color: hsl(0, 0%, 20%);
    width: 300px;
    height: 40px;
    margin: auto;
    border-radius: 5px;
    color: white;
    font-family: Inter;
    font-weight: 600;
    /* margin-top: auto; */
    /* text-align: center; */
    /* text-size-adjust: auto; */
    /* vertical-align: text-bottom; */
    padding-top: 18px;
    transition: width 1s ease-in-out, background-color 1s ease-in-out;
}
.links:hover a{
    color: hsl(0, 0%, 12%);
    transition: color 0.3s ease-in-out;
}
.links:hover{
    /* width: 250px; */
    color: hsl(0, 0%, 12%);
    background-color: hsl(75, 94%, 57%);
    
    transition: width 1s ease-in-out, background-color 1s ease-in-out;
}
.links:visited{
    text-decoration: none;
    color: hsl(0, 0%, 100%);
}
.links:link{
    color: white;
    text-decoration: none;
}

.body-background-color{
    background-color: hsl(0, 0%, 8%);
    color: white;
}
.country{
    color: hsl(75, 94%, 57%)
}
.bio {
    color: white;
    font-style: italic;
}
a,
a:visited{
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    transition: color 0.3s ease-in-out;
}
.pfp{
    border-radius: 100px;
}