* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: 'cstm';
    src: url('./Inter-VariableFont_slnt\,wght.ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(0, 0%, 8%);
    width: 100vw;
    height: 100vh;
    font-family: 'cstm', sans-serif;
}

.profile {
    width: 90vw;
    max-width: 380px;
    background-color: hsl(0, 0%, 12%);
    height: 600px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.image {
    background-image: url(./avatar-jessica.jpeg);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color 0.9s ease;
}

.name {
    color: hsl(0, 0%, 100%);
    font-size: 1.5rem;
    font-weight: 700;
}
.location{
    color: hsl(75, 94%, 57%);
    font-weight: 700;
    transform: translateY(-100%);
}
.tag{
    color: hsl(0, 0%, 100%);
    font-size: 0.9rem;
}
.social{
    width: 80%;
    background-color: hsl(0, 0%, 20%);
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: hsl(0, 0%, 100%);
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.9s ease;
}

.social:hover{
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
}