@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    min-height: 96vh;
    font-family: "Inter", sans-serif;
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 100%);
    font-size: 13px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
}

.name {
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 0;
}

.location {
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 25px;
    color: hsl(75, 94%, 57%); 
}

.tagline {
    font-size: 12px;
}

.box {
    background-color: hsl(0, 0%, 12%);
    width: 270px;
    height: 477px;
    text-align: center;
    border-radius: 10px;
}

.profile-pic {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.profile-pic img {
    width: 65px;
    border-radius: 65px;
}

.social-links {
    width: 85%;
    height: 39px;
    padding: 8px 0;
    border-radius: 7px;
    border: 0px;
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    margin: 6px 0;
}

.social-links:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 20%);
}

.attribution { 
    font-size: 11px; 
    text-align: center; 
    position: absolute; 
    bottom: 0.5em; 
    width:100%;
}

.attribution a, .attribution a:visited { 
    color:hsl(0, 0%, 100%); 
}

.attribution a:hover {
    color: hsl(75, 94%, 57%);   
}