body {
    background-image: url(imagenes/1_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    font-family: 'Rubik', sans-serif;
}

.titulo-container {
    position: absolute;
    top: 11%;
    left: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#tres_manzanas {
    position: relative;
    width: 95px;
    height: auto;
    top: 5%;
    z-index: 1;
}

#agus-fuga-titulo {
    font-size: 1.4em;
    color: rgb(77, 77, 78);
    position: relative;
    margin-top: -10px;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: underline;
}

h1 {
    font-size: 1.4em;
    color: rgb(77, 77, 78);
    position: absolute;
    top: 11%;
    right: 10%;
}

.lunagif {
    position: absolute;
    bottom: 10%;
    left: 41%;
    display: flex;
    gap: 10px;
}

p {
    position: absolute;
    bottom: 27%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    text-align: center;
    font-size: 18px;
}

.links {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.links a {
    font-size: 16px;
    color: rgb(33, 32, 32);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.links a:hover {
    color: rgb(96, 95, 95);
    transform: scale(1.1);
}

#fa {
    position: absolute;
    left: 41%;
    bottom: 31%;
}

@media (max-width: 768px) {
    .titulo-container {
        top: 10%;
        left: 12%;
    }

    h1 {
        top: 12%;
        right: 12%;
    }

    p {
        width: 70%;
        font-size: 16px;
    }

    .links {
        flex-direction: row;
    }

    .links a {
        font-size: 14px;
    }

    .lunagif {
        left: 50%;
        transform: translateX(-50%);
    }

    #fa {
        left: 50%;
        bottom: 35%;
        transform: translateX(-50%);
        width: 200px; /* Ahora es el doble de grande */
    }
}

@media (max-width: 480px) {
    .titulo-container {
        left: 10%;
    }

    h1 {
        top: 12%;
        right: 10%;
    }

    p {
        width: 80%;
        font-size: 14px;
    }

    .links {
        gap: 15px;
    }

    .lunagif {
        left: 50%;
        transform: translateX(-50%);
    }

    #fa {
        left: 50%;
        bottom: 38%;
        transform: translateX(-50%);
        width: 180px; /* Ahora el doble en pantallas más chicas */
    }
}
