/* =========================
   CONFIGURACIÓN GENERAL
   ========================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: "Bodoni Moda", serif;
}


/* =========================
   CONTENEDOR PRINCIPAL
   ========================= */

.linktree {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}


/* =========================
   IMAGEN REDONDA DE PORTADA
   ========================= */

.round-cover {
    width: 160px;
    height: 160px;

    margin: 24px auto 20px;

    border-radius: 50%;
    overflow: hidden;
}

.round-cover img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================
   TÍTULO
   ========================= */

h1 {
    margin: 24px 20px 0;

    font-family: "Bodoni Moda", serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;

    color: #800020;
}


/* =========================
   BIO / SUBTÍTULO
   ========================= */

.bio {
    margin: 8px 20px 0;

    font-family: "Bodoni Moda", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;

    color: #ffffff;
}


/* =========================
   BOTONES
   ========================= */

.social-links {
    width: 100%;
    padding: 0 16px;
    margin-top: 28px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-button {
    width: 100%;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background-color: #800020;
    color: #ffffff;

    border-radius: 999px;

    text-decoration: none;

    font-family: "Bodoni Moda", serif;
    font-size: 17px;
    font-weight: 400;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.social-button i {
    font-size: 18px;
}


/* =========================
   EFECTOS
   ========================= */

.social-button:hover {
    transform: scale(1.02);
    background-color: #98002a;
}

.social-button:active {
    transform: scale(0.98);
}


/* =========================
   IMAGEN DE PIE DE PÁGINA
   ========================= */

.footer-image {
    width: 100%;
    padding: 0 16px;
    margin-top: 24px;
}

.footer-image img {
    width: 100%;
    height: auto;

    display: block;
}


/* =========================
   CONTACTO
   ========================= */

.contact {
    margin-top: 42px;
    padding-bottom: 35px;
}

.contact p {
    margin: 0 0 10px;

    font-family: "Bodoni Moda", serif;
    font-size: 14px;
    font-weight: 400;

    color: #ffffff;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    font-size: 20px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.contact-button:hover {
    transform: scale(1.1);
    opacity: 0.75;
}

.contact-button:active {
    transform: scale(0.95);
}


/* =========================
   COMPUTADORA
   ========================= */

@media (min-width: 700px) {

    .round-cover {
        width: 190px;
        height: 190px;

        margin-top: 30px;
        margin-bottom: 24px;
    }

    h1 {
        font-size: 52px;
    }

    .bio {
        font-size: 20px;
    }

    .social-links {
        padding: 0 20px;
    }

    .social-button {
        height: 52px;
        font-size: 18px;
    }

    .footer-image {
        padding: 0 20px;
    }

    .contact {
        margin-top: 48px;
        padding-bottom: 40px;
    }

    .contact p {
        font-size: 15px;
    }

    .contact-button {
        font-size: 21px;
    }
}