@font-face{
	font-family: LibreBaskerville;
	src: url("fuentes/LibreBaskerville-Regular.ttf");
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: LibreBaskerville;
	src: url("fuentes/LibreBaskerville-Bold.ttf");
	font-weight: bold;
	font-style: normal;
}
@font-face{
	font-family: LibreBaskerville;
	src: url("fuentes/LibreBaskerville-Italic.ttf");
	font-weight: normal;
	font-style: italic;
}
/*RESET*/
figure img{
	width: 100%;
}
a{
	text-decoration: none;
}
body{
	font-family: LibreBaskerville, serif;
	background-color: #eceaf1;
}
/*HEADER*/
header{
	padding: 2%;
	text-align: center;
}
header>h1>a{
	color: #6e678e;
}
/*NAV*/
nav>ul{
	text-align: center;
}
nav>ul>li{
	display: inline-block;
	margin-right: 4%;
	padding: 1%;
	font-weight: bold;

}
nav>ul>li>a{
	color: #a3b2c5;
	transition: 0.5s;
}

nav>ul>li:hover a{
	color: #6e678e;
}
/*MAIN*/
main{
	text-align: center;
	margin: 3%;
}
/*FOOTER*/
footer{
	padding: 1%;
	text-align: center;
	color: #a3b2c5;
}

/* Estilos para el menú móvil */
.menu-movil {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.menu-icono {
  cursor: pointer;
  padding: 2%;
}

.barra {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
}

.menu-lista {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 50px;
  right: 0;
  background-color: #fff;
  padding: 8%;
  z-index: 1;
}

.menu-lista li {
  margin: 3% 0;
}



/* Media query para pantallas de 800px o menos */
@media (max-width: 800px) {
  .menu-escritorio {
    display: none; /* Oculta el menú de escritorio */
  }

  .menu-movil {
    display: flex; /* Muestra el menú móvil */
  }
}

/* Media query para pantallas de 801px o más */
@media (min-width: 801px) {
  .menu-movil {
    display: none; /* Oculta el menú móvil */
  }

  .menu-escritorio {
    display: block; /* Muestra el menú de escritorio */
  }
}