/* BANNER SUPERIOR */

.banner{
width:100%;
background:#0a2a66;
}

.banner img{
width:100%;
height:auto;
display:block;
}

.banner{
width:100%;
height:300px;
overflow:hidden;
}

.banner img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}
body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
background-color:#f4f4f4;
text-align:center;
}

header{
background:#0a2a66;
color:white;
padding:20px;
}

/* CONTENEDOR DEL HEADER */

.header-container{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* LOGO */

.logo{
width:120px;
height:auto;
}

/* TITULO */

.titulo h1{
margin:0;
font-size:28px;
}

.titulo p{
margin:5px 0 0 0;
font-size:16px;
}

/* MENU */

nav{
background:#1c4bb5;
padding:10px;
}

nav a{
color:white;
margin:15px;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
color:yellow;
}

/* CONTENIDO */

.container{
max-width:800px;
margin:auto;
padding:20px;
background:white;
border-radius:10px;
text-align:center;

}
.container{
box-shadow:0 0 15px rgba(0,0,0,0.1);
}

h2{
color:#1c4bb5;
}
/* TABLAS */

table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

th,td{
border:1px solid #ccc;
padding:10px;
}

th{
background:#1c4bb5;
color:white;
}

/* BOTONES */

button{
padding:10px 20px;
background:#1c4bb5;
color:white;
border:none;
cursor:pointer;
border-radius:5px;
}

button:hover{
background:#0a2a66;
}

/* RESPONSIVE PARA CELULAR */

@media (max-width:600px){

.header-container{
flex-direction:column;
}

.logo{
width:90px;
}

.titulo h1{
font-size:22px;
}

.container{
width:95%;
}

table{
font-size:14px;
}

button{
width:100%;
padding:15px;
}

nav a{
display:block;
margin:10px;
}

}