/*
Paleta de colores
https://paletton.com/#uid=20l0u0kmXmld4vLixqxrchSx7cq
*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
}

img {
  object-fit: cover;
}

header {
  min-height: 10vh;
  font-size: 40px;
  font-weight: bold;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  background-color: #21755e;
  color: #632400;
  border-bottom: #632400 solid 1px;
}

h1 {
  font-size: 24px;
  text-align: center;
  width: 100%;
}

header img {
  width: 150px;
}

header img:last-of-type {
  display: none;
}

main {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
  gap: 1rem;
  /* background-color: #62a693; */
  background-image: linear-gradient(135deg, #62a693, #21755e, #62a693);
}

main section {
  margin: 20px auto;
  width: 65vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: rgb(165, 146, 121);
  padding: 10px;
  border-radius: 10px;
}

main p {
  text-align: justify;
}

main img {
  height: 40vw;
  width: 60vw;
  margin-bottom: 10px;
  border-radius: 10px;
}

footer {
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  min-height: 10vh;
  text-align: center;
  background-color: #21755e;
  color: #632400;
  border-top: #632400 solid 1px;
}

@media screen and (min-width: 600px) {
  main {
    grid-template-columns: repeat(2, 1fr);
  }

  main img {
    height: 30vw;
    width: 30vw;
  }

  main section {
    width: 35vw;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 1px 1px rgb(53, 52, 52);
  }

  header img:last-of-type {
    display: block;
  }
}

@media screen and (min-width: 900px) {
  main {
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
  }
  main img {
    height: 17vw;
    width: 17vw;
  }
  main section {
    width: 20vw;
    min-height: 70vh;
  }

  header img:last-of-type {
    display: block;
  }
}
