body {
    background-image: url(imagenes/1_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    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; 
}

.titulo-container a {
    display: inline-block;
    position: relative; /* Asegura que respete el z-index */
    z-index: 2; /* Hace que el enlace esté por encima de la imagen */
}

/* IMAGEN DE LAS MANZANAS */
#tres_manzanas {
    position: relative;
    width: 95px;
    height: 36%;
    top: 5%;
    z-index: 1; /* Mantiene la imagen por debajo del enlace */
}

/* TEXTO DEL TÍTULO */
#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;
}

#sobremi {
    display: block;
    margin: 20px auto 10px auto; /* 🔼 mucho más arriba */
    height: auto;
}

/* CONTENEDOR GENERAL DEL CONTENIDO */
.contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

/* TEXTO PRINCIPAL DEL ABOUT */
#aboutme {
    max-width: 680px;
    font-size: 1.05em; /* ni muy chico ni muy grande */
    line-height: 1.7;
    color: #2e2e2e;
    margin-top: 10px;
    margin-bottom: 80px;
    font-weight: 300;
}

#aboutme a {
    color: #1c1c1d;
    text-decoration: underline;
}

#aboutme {
    padding: 20px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    /* Imagen sobre mí */
    #sobremi {
        display: block;
        width: 95%; /* mantiene buen tamaño en pantallas chicas */
        margin-top: 30px; /* más cerca del top */
        margin-bottom: 10px;
        height: auto;
    }

    /* Texto del about */
    #aboutme {
        font-size: 1em;
        padding: 15px;
        margin-bottom: 60px;
        margin-top: 0;
    }

    /* Contenedor del título */
    .titulo-container {
        top: 4%;
        left: 5%;
        transform: scale(0.9); /* lo achica un poquito en móviles */
    }

    #tres_manzanas {
        width: 65px;
    }

    #agus-fuga-titulo {
        font-size: 1em;
    }
}





