@import url("https://fonts.googleapis.com/css2?family=Arvo&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

main {
  margin-top: 75px;
  margin-bottom: 15px;
}

.header1 {
  background: rgba(15, 15, 15, 0.774);
  border-bottom: 1px solid rgba(193, 197, 194, 0.137);
}

/*Texto contacto y mapa modo celular*/

.contacto .gridcontacto {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contacto .gridcontacto .textocontacto {
  text-align: justify;
  width: 94%;
  max-width: 700px;
  border-radius: 35px;
  color: rgb(255, 255, 255);
  margin: 3%;
  padding-top: 4%;
  padding-bottom: 8%;
}

.textocontacto h1 {
  font-family: "Arvo", serif;
  text-align: center;
  font-size: 32px;
  padding-top: 3%;
}

.textocontacto a {
  font-family: "Arvo", serif;
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.textocontacto p {
  font-family: "Arvo", serif;
  text-align: center;
  padding-top: 3%;
  font-size: 16px;
  line-height: 1.4;
}

.contacto .gridcontacto .divmapa {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 94%;
  margin: 3%;
}

.contacto .gridcontacto .divmapa .mapa {
  width: 100%;
  max-width: 700px;
}

/*Horario*/
.centrarhorario {
  display: flex;
  justify-content: center;
  text-align: center;
}

.horario {
  margin: 3%;
  width: 94%;
  max-width: 700px;
  height: 100%;
  padding-top: 2%;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

.gridhorario {
  display: grid;
  margin: auto;
  width: 210px;
  grid-gap: 2px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: 50% 50%;
  padding-bottom: 3%;
  padding-top: 5px;
  align-items: center;
}

.txthorario {
  font-family: "Arvo", serif;
  color: #ffffff;
}

.diashorario {
  font-family: "Arvo", serif;
  text-align: left;
  grid-row-start: 3;
  grid-row-end: 4;
  color: #ffffff;
}

.horashorario {
  font-family: "Arvo", serif;
  grid-row-start: 4;
  grid-row-end: 3;
  text-align: right;
  color: #ffffff;
}

/*Maximo modo pc*/
@media (min-width: 1400px) {
  .contacto {
    max-width: 1400px;
  }
  .horario {
    max-width: 1400px;
  }
}

/*Texto y mapa modo pc*/
@media screen and (min-width: 1050px) {
  main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;
    min-height: 1000px;
    margin-top: 100px;
    margin-bottom: 5px;
  }

  .contacto {
    width: 100%;
  }

  .contacto .gridcontacto {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .contacto .gridcontacto .divmapa {
    width: 100%;
    height: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .contacto .gridcontacto .divmapa .mapa {
    width: 100%;
    max-width: 700px;
  }

  .contacto .gridcontacto .textocontacto {
    width: 40%;
    height: 70%;
    background: none;
    box-shadow: none;
    margin-right: 0;
  }

  .contacto .gridcontacto .textocontacto h1 {
    text-align: right;
  }

  .contacto .gridcontacto .textocontacto p {
    text-align: right;
    letter-spacing: 0.3px;
  }

  /*Horario*/

  .centrarhorario {
    width: 100%;
  }

  .horario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 262px;
    z-index: -1;
    margin: 0;
  }
}
