@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 {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(0, 0%, 8%);
    font-family: 'Inter', Arial;
}

.social-links_card {
    background-color: hsl(0, 0%, 12%);
    width: 300px;
    height: 100%;
    padding: 25px;
    border: none;
    border-radius: 5px;
    display: flex;
    flex-flow: column nowrap;
    text-align: center;
}

.social-links-image {
    width: 70px;
    height: 70px;
    align-self: center;
    margin-block: 20px;
}

.social-links-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.social-links-bio h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
}

.social-links-bio p {
    color: hsl(75, 94%, 57%);
    font-size: 12px;
    font-weight: 600;
    margin-block: 10px 25px;
}

.social-links-bio+p {
    color: hsl(0, 0%, 80%);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 15px;
}

.social-links a {
    display: block;
    width: 100%;
    background-color: hsl(0, 0%, 20%);
    padding-block: 10px;
    border-radius: 5px;
    margin-block: 10px;
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-links a:is(:hover, :active, :focus) {
    background-color: hsl(75, 94%, 57%);
    color: #000;
}