body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: url('../images/background.png') no-repeat center center fixed;
    background-size: cover;
}

.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Capa semi-transparente sobre la imagen de fondo */
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.logo {
    max-width: 300px; /* Ajusta esto según el tamaño de tu logo */
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em; /* Ajusta el tamaño del encabezado según tus preferencias */
    margin-bottom: 0.5em;
}

p {
    font-size: 1.2em; /* Ajusta el tamaño del texto según tus preferencias */
    max-width: 700px; /* Ajusta el ancho del texto según tus preferencias */
    margin: auto;
}

.herohome--caption_title {
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-weight: 400; /* Normal weight */
    text-shadow: 0 0 12px rgba(0,0,0,0.73);
    text-align: center;
    font-size: 30px; /* O el tamaño que prefieras */
    text-transform: uppercase;
    margin-bottom: 40px;
    width: 60%; /* Ajusta según tus necesidades */
}
/* Estilos adicionales para ajustar según las dimensiones de pantalla y el diseño responsivo */
@media (min-width: 768px) {
    .herohome--caption {
        font-size: 45px; /* Tamaño para pantallas más grandes */
        line-height: 64px;
    }
}