* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    color: white;
    background-color: hsl(0, 0%, 8%);

    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}

.page {
    background-color: hsl(0, 0%, 12%);
    border-radius: 1rem;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 1.5rem;
}

.pfp {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;

}

.bio {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.bio h2 {
    margin: 2rem 0 1rem 0;
}

.location {
    color: hsl(75, 94%, 57%);
}

.description {
    margin: 1.5rem 0 1rem 0;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
}

.anchor-wrapper {
    background-color: hsl(0, 0%, 20%);
    border-radius: .3rem;

    width: 100%;
    margin: .5rem 0;
}

.socials a {
    color: white;
    text-decoration: none;

    display: block;     
    width: 100%;
    padding: 0.75rem;
    text-align: center;
}

.anchor-wrapper:hover {
    background-color:hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
}