* {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;

  margin: 0;
  padding: 0;

  text-decoration: none;
  list-style: none;
}
/* 
 * HEADER
 */
header {
  padding: 6rem 0 2rem 0;
}
header h1 {
  font-size: 3em;
  font-weight: 900;
  color: #997344;
  text-align: center;
}

/*
 * SECTION 
 */

section {
  padding: 2rem;
  background: linear-gradient(#b4d9cd, #003531);
}
section p {
  font-weight: 100;
  line-height: 200%;
  margin-top: 1rem;
  color: #fff;
}
section img {
  width: 500px;
}
.text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-up {
  margin-bottom: 6rem;
}
.text-up span {
  margin-right: 4rem;
}
.text-down span {
  margin-left: 4rem;
}

/* MEDIA Q. */
@media only screen and (max-width: 1000px) {
  section img {
    margin-top: 3rem;
  }
  .text {
    flex-direction: column;
  }
  .text span {
    margin: 0;
  }
  .text-up {
    margin: 0;
  }
  .text-down {
    flex-direction: column-reverse;
    margin: 0;
  }
}
@media only screen and (max-width: 550px) {
  section img {
    width: 350px;
  }
}
