/*Estilo de About.html*/

body {
    background: url('./img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    }

.subtitulo {
    font-family: "Nunito", sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    opacity: 0.8;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra al texto */
}

p {
    font-family: "Nunito";
    font-size: 1.5rem; /* Tamaño de fuente */
    line-height: 1.5; /* Altura de línea */
    color: #fff;
    margin-bottom: 1.5rem; /* Margen inferior */
}

/* Estilos para las secciones */
.content-section {
    padding: 60px 0;
    color: white;
    text-align: center;
}

.content-box {
    background-color: rgba(65, 63, 63, 0.5); /* Fondo gris con transparencia */
    padding: 20px;
    border-radius: 15px; /* Bordes redondeados */
}


/* Responsividad */
@media (max-width: 768px) {

    p {
        font-size: 1.0rem; /* Tamaño de fuente más pequeño para móviles */
    }

    .subtitulo {
        font-size: 2.0rem; /* Tamaño de fuente más pequeño para móviles */
    }

    /*.title-divider {
        width: 70%;
    }*/

    /*.middle-section {
        padding: 30px 0;
    }*/

    /*.middle-section .lead {
        font-size: 1rem;
        margin-bottom: 20px;
    }*/

    .content-section {
        padding: 30px 0;
    }

    /*.section-title {
        font-size: 2rem;
    }*/

    .content-box {
        padding: 15px;
    }

    
    
}
