/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    justify-content: center;
}

body {
    font-family: Roboto;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background: url(../imagenes/background/fondo1.jpg) no-repeat center center fixed;
    background-size: cover;
    color: white;
    justify-content: center;
}

.contenedor {
    padding: 5px;
    text-align: center;
    background: rgba(1, 1, 1, 0.7);
    justify-content: center;
}

.fijo {
    position: sticky;
    top: 0;
    bottom: 0;
    z-index: 1000;
    justify-content: center;
}

header {
    top: 0;
}

footer {
    bottom: 0;
}

.contenido {
    flex: 1;
    overflow-y: auto;
    padding: 5px;
    background: rgba(1, 1, 1, 0.7);
    display: flex;
    justify-content: center;
}

.contenido-centrado {
    max-width: 1200px; /* Máximo ancho del contenido */
    width: 90%; /* Ancho relativo para dispositivos pequeños */

    padding: 5px;
    color: white;
    justify-content: center;
}
