@font-face {
font-family: 'Inter';
src: url('./assets/fonts/Inter-VariableFont_slnt,wght.ttf') format('truetype');
}
*{
    margin: 0;
    padding: 0;
    color: white;
    font-family: Inter;
}
body{
    background-color: hsl(0, 0%, 8%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
main{
    background-color: hsl(0, 0%, 12%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 20px;
}
.dev-picture{
    display: block;
    border-radius: 50%;
    width: 90px;
}
.dev-info{
    text-align: center;
    margin-bottom: 12px;
}
.dev-name{
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 25px;
}
.location{
    color: hsl(75, 94%, 57%);
    font-weight: 600;
    font-size: 15px;
}
.desc{
    font-size: 13px;
    color: hsl(0, 0.00%, 80.00%);
}
.links{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 105%;
    text-align: center;
}
.link{
    text-decoration: none;
    padding: 15px;
    background-color: hsl(0, 0%, 20%);
    border-radius: 10px;
    font-weight: 700;
}
.link:hover{
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
}