html, body {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  background-color: #2D4063;
  border-radius: 20px;
  color: #000;
  text-align: center;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 10px;
}

.container {
  padding:10%;
}

h1 {
  font-family: "Unbounded", sans-serif;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.2rem;

  @media (min-width: 550px) and (max-width: 899px) {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  @media (min-width: 900px) {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

h3 {
  font-size: 1rem;
  color: #fff;
  line-height: 1.5rem;

  @media (min-width: 550px) and (max-width: 899px) {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  @media (min-width: 900px) {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

p {
  color: #fff;
  line-height: 1.8rem;
}

a {
  background-color: #EEBA87;
  font-weight: 600;
  color: #000;
  padding: 10px 40px;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.contact {
  padding-left: 10%;
  padding-right: 10%;
}

.contact-info {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
