body {
    font-family: 'Arial', sans-serif;
    background-image: url('images/background.webp');
    background-size: cover;
    background-attachment: fixed;
    color: #333;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.container_about_us {
	max-width:500px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


h1 {
    color: white;
	margin-top: 0.2em;
    margin-bottom: 0.2em;
    font-size: 3.5em;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Sombra para el texto de H1 */
}

p.subtitle {
    color: white;
    margin-top: 0; /* Elimina el margen superior para el subtítulo */
    margin-bottom: 0.5em; /* Margen inferior para el subtítulo */
    font-size: 0.5em; /* Tamaño de fuente para el subtítulo */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Sombra para el texto del subtítulo */
}


#congratulations {
    font-size: 1.2em;
    margin-top: 20px;
}

a {
    color: #5C6BC0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 0;
}

.onWhiteBk{
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1); /* Sombra más oscura y extendida */
}