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

/* ==== Variables ==== */
:root {
    --color-green: hsl(75, 94%, 57%);
    --color-grey700: hsl(0, 0%, 20%);
    --color-grey800: hsl(0, 0%, 12%);
    --color-grey900: hsl(0, 0%, 8%);
}

/* ==== Font ==== */
@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter-VariableFont_slnt\,wght.ttf');
}

/* ==== General styles ==== */
body {
    background: var(--color-grey900);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* ==== Social links ==== */
.social-links {
    width: 320px;
    background: var(--color-grey800);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 10px;
    border-radius: 10px;
}

/* ==== Profile photo ==== */
.social-links img {
    border-radius: 50%;
    width: 100px;
}

/* ==== Info ==== */
.info {
    text-align: center;
    max-width: 300px;
    margin: 8px;
}


.name {
    font-weight: 600;
}

.city {
    color: var(--color-green);
    font-weight: 600;
    padding: 10px;
}

.description {
    font-weight: 400;
    margin-bottom: 15px;
}

.btn {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    background: var(--color-grey700);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 7px;

}

.btn:active,
.btn:focus,
.btn:hover {
    background: var(--color-green);
    color: var(--color-grey900);
}

@media (min-width: 768px) {
    .social-links {
        width: 400px;
        padding: 30px;
    }
}