@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&family=Questrial&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
	background-color: #BCE9EB;
}


h1{
    font-family: 'Questrial', sans-serif;
    font-weight: bold;
    color: #004AAD;
    text-align: center;
      font-size: 50px;

}
h2{
  font-family: 'Questrial', sans-serif;
  color: #004AAD;
  text-align: center;
  font-size: 30px;
}

.contenedor{
  width: 100%;
  margin: auto;
}

header{
	width: 100%;
	height: 280px;
	background-color: #BCE9EB;
}

.logo{
	padding: 15px 0;
}
.logo img{
	display: block;
  margin: auto;
}

.menu-princ{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  justify-content: space-between;
  max-width: 250px;
  margin: auto;
}

.menu-princ a{
    text-decoration: none;
    color: #004AAD;
    font-family: 'Questrial', sans-serif;
    font-size: 20px;
    font-weight: bold;
}

.menu-princ a:hover{
  color:#ffffff;
}

.seccion-tabla{
    display: flex;
    justify-content: center;
  align-items: center;
}

table{
    border: 2px solid white;
    text-align: center;
    background-color: #004AAD;
    border-radius: 5px;
    font-family: 'Questrial', sans-serif;
}
.seccion-tabla th{
    color: white;
    font-size: 24px;
}
.seccion-tabla td{
    border: 2px solid #004AAD;
    background-color: white;
    color: blue;
        font-size: 24px;

}

.seccion-tabla-registro{
   display: flex;
    justify-content: center;
  align-items: center;
}

.seccion-tabla-registro th{
    color: white;
    font-size: 18px;
}
.seccion-tabla-registro td{
     border: 2px solid #004AAD;
    background-color: white;
    color: blue;
        font-size: 16px;
}


footer{
  background-color: #D383EB;

}
.contenedor7{
  display: block;
  width: 100%;
  margin: auto;
  padding: 15px;
}

.contenedor7 h2{
    text-align: center;
    font-family: 'Questrial', sans-serif;
    font-size: 30px;
    color: #BCE9EB;
}

.contenedor7 h3{
    text-align: center;
    font-family: 'Questrial', sans-serif;
    font-size: 22px;
    color: #BCE9EB;
}

.contenedor7 p{
    text-align: center;
    font-family: 'Questrial', sans-serif;
    font-size: 20px;
    color: white;
}