body {
    margin-top: 150px;
    margin-bottom: 0;
    margin-left: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    
}

.content-container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9); /* Fondo blanco semi-transparente */
    padding: 40px;
    margin: 50px auto;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: justify;
}
h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.5em;
    color: #b30000; /* Color más atractivo */
}
p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1em;
}

 @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }

            p {
                font-size: 0.9em;
            }

            .content-container {
                margin: 10px;
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8em;
            }

            p {
                font-size: 0.85em;
            }
        }