html {
    background-color: hsl(0, 0%, 8%);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding:10px;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 12%);
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 375px;
    margin: 0 auto;
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 20px 0px 25px 0px;
}

.name {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 10px;
    color:hsl(0, 0%, 100%);
}

.location {
    font-weight: 600;
    font-size: 14px;
    color: hsl(75, 94%, 57%);
}

.quote {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    color: hsl(0, 0%, 70%);
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.social {
    display: flex;
    background-color: hsl(0, 0%, 20%);
    margin: 8px 0px 8px 0px;
    border-radius: 10px;
    color: hsl(0, 0%, 100%);
    width: 280px;
    height: 50px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

@media only screen and (min-width: 1024px) {

    .card {
        max-width: 400px;
    }

    .social:hover{
        background-color: hsl(75, 94%, 57%);
        cursor: pointer;
        caret-color: black;
        color: hsl(0, 0%, 0%);
    }

