body {
    background-color: #0d1e35;
    font-family: "Poppins", sans-serif;
    background-image: url(/images/fondo_ppal.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    background-blend-mode: multiply;
    background-color: rgba(13, 30, 53, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.logo-container img {
    width: 250px;
    height: auto;
}

.about-text {
    text-align: center;
    margin: 20px 0;
}

.testimonials-container {
    position: relative;
    width: 80%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-size: 1.2em;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    max-width: 400px; /* Ensure the testimonials don't overlap too much */
}

#testimonial1 {
    top: 20px;
    left: 10%;
}

#testimonial2 {
    top: 20px;
    right: 10%;
}

#testimonial3 {
    bottom: 20px;
    left: 10%;
}

#testimonial4 {
    bottom: 20px;
    right: 10%;
}

@media (max-width: 768px) {
    .testimonial {
        font-size: 1em;
        padding: 10px;
    }
}
