/* Estilos para el body */
body {
    background-image: url('images/fondo.jpg'); /* Reemplaza con la ruta de tu imagen */
    background-size: cover; /* Cubre todo el fondo */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    background-attachment: fixed; /* Mantiene la imagen fija al hacer scroll */
	background-color: #f4f4f4;
	color: #333;
    margin: 0;
    padding: 0;
    height: 100vh; /* Asegura que el body ocupe toda la altura de la pantalla */
    display: flex; /* Usa Flexbox para centrar el contenedor */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    font-family: Arial, sans-serif;
}

/* Estilos para el cuadro central */
.conteiner {
    background-color: rgba(255, 255, 255, 0.8); /* Fondo blanco semitransparente */
    padding: 30px;
    border-radius: 10px;
    text-align: center; /* Centra el texto dentro del cuadro */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos para el enlace */
.conteiner a {
    display: inline-block; /* Permite margen y padding */
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #CF1F1F;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.conteiner a:hover {
    background-color: #0056b3;
}
/* Estilos para el header */
header {
	margin-top: 20px;
    padding: 10px;
    text-align: center;
}

/* Estilos para el main */
main {
	margin-top: 5px;
    padding: 10px;
    flex-grow: 1; /* Permite que el contenido principal ocupe el espacio disponible */
}

/* Estilos para el texto */
.texto-grande {
  font-family: Arial , sans-serif; 
  font-size: 26px; 
  color: #d35400;
  font-weight: bold; 
  text-align: center; 
  text-transform: uppercase;
}
.texto-medio {
  font-family: Arial , sans-serif; 
  font-size: 16px; 
  color: #B00909;
  font-weight: bold; 
  text-align: center; 
  }
 .tex-pequeño {
  font-family: Arial , sans-serif;
  font-size: 16px; 
  color: white;
  font-weight: bold; 
  text-align: center;
 }	 
 

p {
  color: #333; /* Un color gris oscuro para el texto del párrafo */
  font-size: 14px; /* Tamaño de fuente más pequeño para el párrafo */
  line-height: 1.0; /* Añade espacio entre líneas para mejorar la legibilidad */
  text-align: center; /* Justifica el texto del párrafo */
}
hr {
  border: none; /* Elimina el borde predeterminado */
  height: 1px; /* Establece el grosor de la línea */
  background-color: #8C8989; /* Define el color de la línea */
  margin: 10px 0; /* Agrega espacio arriba y abajo */
}
.pre-linea {
  white-space: pre-line;
}

.destacado {
  font-weight: bold; /* Negrita */
  color: #000000; /* Color del texto */
}

/* Estilos para el footer */
footer {
    background-color: rgba(50, 50, 50, 0.5);
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}