@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 100%);
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

.card {
    min-width: 375px;
    background-color: hsl(0, 0%, 12%);
    border-radius: 5%;
    padding: 2rem;
}

.author-avatar {
    display: block;
    margin: 0 auto 2rem auto;
    border-radius: 50% ;
    width: 6rem;
}

.name {
    font-size: 2rem;
    text-align: center;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.address {
    text-align: center;
    color: hsl(75, 94%, 57%);
    margin-bottom: 2rem;
}

.quote {
    text-align: center;
    font-weight: 400;
    color: hsla(0, 0%, 100%, 0.77);
    margin-bottom: 2rem;
}

.social-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a { 
    display: block;
    padding: 1rem;
    text-align: center;
    border-radius: 0.5rem;
    background-color: hsl(0, 0%, 20%);
    text-decoration: none;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
}

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