body{
    font-family: "Inter", sans-serif;
    font-size: 14px;
    background-color: hsl(0, 0%, 8%);
    color: white;
}
.wt400{
    font-weight: 400;
}
.wt600{
    font-weight: 600;
}
.wt700{
    font-weight: 700;
}
.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    text-align: center;
    background-color: hsl(0, 0%, 12%);
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.profile-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.image-section{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;   
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.name{
    font-size: 20px;
}
.place{
    color: yellow;
}

.links-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.link{
    text-decoration: none;
    color: white;
    background-color: hsl(0, 0%, 20%);
    padding: 10px 20px;
    border-radius: 5px;
    width: 200px;
    text-align: center;
}
.link:hover{
    background-color: hsl(75, 94%, 57%);
    color: black;
}

.attribution {
    font-size: 14px;
    text-align: center;
    position: fixed;
    bottom: 0;
}