
/* fonts menu 
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@700&family=Poppins:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aref+Ruqaa+Ink&display=swap');
*/

/* */
.w3-bar-block .w3-bar-item {
  padding:20px;
  
}

.w3-container {
  padding:10px;
  font-family: 'Aref Ruqaa Ink', serif;
  font-size: 16px;

}


.w3-third h3 {
  font-family: 'EB Garamond', serif;
  font-size: 25px;
  color: #2F4358; 
  text-decoration: none;
}

.w3-third a {
  text-decoration: none;
}

body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Aref Ruqaa Ink', serif;
}


/* GRID para el sitio web*/
.item1 { grid-area: header; }
.item2 { grid-area: menu; }
.item3 { grid-area: main; }
.item4 { grid-area: contact; }
.item5 { grid-area: footer; }


.grid-container {
  display: grid;
  grid-template-areas:
    'header header header header '
    'menu menu menu menu '
    'main main main main '
    'contact contact contact contact '
    'footer footer footer footer ';
  gap: 0px; /* TAMAÑO DE LINEA ENTRE CELDAS */
  background-color: #ffffff; /* color de las CELDAS */
  padding: 0px;
}

.grid-container > div {
  background-color: white;
  text-align: center;
  padding: 0px 0px;
  
}


/* cabecera*/
.header {
  background-color: #fff;
  padding: 0px;
  text-align: center;
  font-size: 15px;
}



#img-logo {
  width: 28%;
  height: auto;
}


.about {
  
  text-align: center;
  
}

.contact {
  background-color: #fff;
  padding: 0px;
  text-align: center;
  font-size: 15px;
}



#img-contac {
  width: 300px;
  height: auto;
}

/*
.letra-logo1 {
  margin:50px;
  font-size: 70px;
  text-align: center;
  letter-spacing: 0.13em;
  font-family: 'Cormorant', serif;
}

.letra-logo2 {
  margin-top: 2%;
  display: block;
  font-size: 27.5px;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: 'Cormorant Unicase', serif;
}


/* color topo - Taupe #483C32  */
/*.letra-logo1 a {
  text-decoration: none;
  color: #483C32;
}

.letra-logo2 a {
  text-decoration: none;
  color: #483C32;
}
*/


.contact {
  padding: 1px 1px;
}

h4 {
  text-align: center;
}

.contact p {
  text-align-last: center;
  font-family: 'Cormorant Unicase', sans-serif;
  font-size: 58;
  font-weight: bolder;
  line-height: 26px;
}

.cont br {
  text-align-last: center;
  font-family: 'Cormorant Unicase', sans-serif;
  font-size: 48;
  font-weight: bolder;
  line-height: 26px;
}

/* navegacion */ 
#navbar {
  overflow: hidden;
  background-color: #fff;
  padding: 13px;
  opacity: 5;
  box-shadow: 2px 2px 5px #999;
}

/* HACE desaparecer una imagen*/

#navbar a {
  float: flex; /* deja la barra de menu movil al centro */
  /*display: inline-block;*/
  align-content: center;
  
  padding: 15px 15px;
  text-decoration: none;
  transition-duration: .5s;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Cormorant Unicase', serif;

  color: #2F4358; /* color Firebrick */
 
}

#navbar a:hover {
  color:#B6B6B4;   /* color  */
  transition-duration: .5s;
  font-size: 18px;
  font-weight: bolder;
  text-shadow: 5px;
  font-family: 'Cormorant Unicase', serif;
}

#navbar a.active {
  
  color: #b1b7b9;
  
  
}

.content {
  padding: 16px;
  text-align: left;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 5px;
}



.footer p {
  position: relative; /* deja la barra de derecho de autor aiempre a la misma distancia final de pagina y no mueve*/
  bottom: 0px;
  margin-bottom: 5px;
  display: inline-block;
  font-family: 'Cormorant Unicase', serif;
  color: #483C32;
  text-align: center; /* alinea horizontal el texto*/
  justify-content: center; /* alinea vertical el texto*/
  width: 100%;
  font-size: 12px;
  font-weight: bolder;
  height: 17px;
  background-color: #fff;
}

/* If the screen size is 600px or less, set the font-size of <div> to 30px */
@media only screen and (max-width: 600px) {
  
  #img-logo {
  width: 55%;
  height: auto;
  /*display: none !important;*/
  }

  #navbar a {
    display: inline-block;
    font-size: 16px;
  }

  #navbar a:hover {
    font-size: 16px;
  }
}    

.footer p {
  position: relative; /* deja la barra de derecho de autor aiempre a la misma distancia final de pagina y no mueve*/
  bottom: 0px;
  margin-bottom: 5px;
  font-size: medium;
}