/* Archivo: estilos.css */

/* 1. Configuramos el cuerpo para que ocupe todo el alto y tenga fondo */
body {
    margin: 0;
    padding: 0;
    height:vh; /* Ocupa el 100% de la ventana */
    display: flex;
    justify-content: center; /* Centrado horizontal */
    /*align-items: center;     /* Centrado vertical */
    
    /* Configuración de la imagen de fondo */
    background-image: url('../images/background-instructivo.png'); /* Cambia por la ruta de tu imagen */
    background-size: cover;      /* Ajusta la imagen para cubrir todo el fondo */
    background-position: center; /* Centra la imagen de fondo */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Mantiene el fondo fijo al hacer scroll */
    font-family: Arial, sans-serif;
}
h1, h2, h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #222;
}
/* 2. Estilos para el contenedor centrado */
.contenedor {
    background-color: rgba(255, 255, 255, 0.9); /* Fondo blanco con transparencia */
    padding: 100px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%; /* Responsivo para móviles */
    text-align: left;
}
