body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('../image/xpo360_bcg.png') no-repeat center center fixed;
    background-size: cover;
}
.container {
    text-align: center;
    width: 90vw;
    max-width: 1440px;
}
.header {
    background-color: rgba(128, 128, 128, 0.3); /* Fondo gris tenue con opacidad del 50% */
    padding: 1em;
    border-radius: 8px;
    margin-bottom: 1em;
}
h1 {
    font-size: 4vw; /* Ajusta el tamaño de la fuente al ancho de la ventana */
    color: #ffffff; /* Color de texto para el título */
    margin: 0;
}
.bold {
    font-weight: bold;
}
.green-text {
    color: white;
    margin-top: 0.5em;
    font-size: 2vw; /* Ajusta el tamaño de la fuente al ancho de la ventana */
    font-weight: bold; /* Negritas para el texto verde */
}
.slideshow {
    position: relative;
    width: 100%;
    height: 56.25vw; /* 16:9 aspect ratio */
    max-height: 900px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease;
}
.slideshow img.active {
    opacity: 1;
}
.footer {
    width: 100%;
    background-color: rgba(128, 128, 128, 0.5); /* Fondo gris tenue con opacidad del 50% */
    color: #333;
    text-align: center;
    padding: 1em 0;
    position: absolute;
    bottom: 0;
    font-weight: bold; /* Negritas para el texto*/
}
@media (min-width: 600px) {
    h1 {
        font-size: 3vw;
    }
    .green-text {
        font-size: 1.5vw;
    }
}
@media (min-width: 1200px) {
    h1 {
        font-size: 2vw;
    }
    .green-text {
        font-size: 1vw;
    }
}