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

/* estilos del header */
header {
  background-color: #2b2b2b;
  margin: 10px;
  border: 5px solid red;
}
header img {
  margin-left: 15px;
  margin-top: 15px;
  border: 2px solid grey;
  width: 10%;
}

/* estilos del main */
main {
  background-color: #2b2b2b;
  margin: 10px;
  padding: 10px;
  margin-bottom: 30px;
  padding-bottom: 90px;
  border: 5px solid red;
}
main h1 {
  color: black;
  text-align: center;
  background-color: brown;
  margin-bottom: 2rem;
  border: 3px solid white;
}
main h2 {
  color: black;
  text-align: center;
  background-color: brown;
  width: 40%;
  margin-left: 30%;
  margin-bottom: 2rem;
  border: 3px solid white;
}
main .texto {
  color: greenyellow;
  text-align: center;
  font-size: 20px;
}
main img {
  background-color: white;
  border: 3px solid black;
}
main .img-local {
  text-align: center;
  color: greenyellow;
  font-size: 20px;
}
main .img-local img {
  width: 40%;
  margin-right: 5rem;
}

/* estilo del footer */
footer {
  color: whitesmoke;
  text-align: center;
  margin: 10px 10px;
  margin-bottom: 20px;
  padding: 5px;
  border: 5px solid red;
  background-color: #2b2b2b;
}

/*mq mobile*/
@media (max-width: 600px) {
  main section {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
  }
  img {
    width: 50%;
    margin-left: 5rem;
  }
}
/*mq tablet*/
@media (min-width: 800px) {
  main section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 60%);
  }
  main section .imagen-siete, main section .imagen-ocho {
    display: none;
  }
  main section img {
    width: 60%;
    margin-left: 2rem;
  }
  main section .logo-cuatro {
    display: none;
  }
}
/*mq desktop*/
@media (min-width: 1024px) {
  main section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 55%);
  }
  main section .imagen-siete, main section .imagen-ocho {
    display: block;
  }
  main section .logo-cuatro {
    display: block;
  }
  main section img {
    width: 60%;
    margin-left: 15%;
  }
}

/*# sourceMappingURL=main.css.map */
