body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: #1c3733;
}

.button {
  background: #217482;
  display: inline-block;
  padding: 16px 32px;
  color: #fdfdfd;
  margin: 16px 0;
  text-decoration: none;
}

#hero {
  width: calc(100% - 64px);
  border-top: 2px solid #217482;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("./images/background.png");
  background-size:100% 100%;
  padding: 32px;
}

#hero img {
  height: 500px;
  width: auto;
  margin-right: 64px;
}

#hero h1 {
  font-size: 1.8rem;
  font-weight: normal;
}

#hero h1 strong {
  font-size: 3rem;
}

#whyClarity {
  border-left: 64px solid #e6e49f;
  padding: 32px 64px;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#whyClarity h2 {
  width: calc(100% + 64px);
  color: #fdfdfd;
  text-align: center;
  padding: 64px;
  margin-left: -64px;
  margin-top: -64px;
  font-size: 2rem;
  background-color: #217482;
  clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0 80%);
}

#product {
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#product img {
  width: 60%;
}

#product-title {
  width: calc(100% - 64px);
  color: #fdfdfd;
  text-align: center;
  padding: 32px;
  font-size: 3rem;
  background-color: #217482;
  margin-bottom: 0;
  margin-top: 64px;
}

#product .subtitle {
  font-size: 2rem;
}

#contact {
  background-color: #217482;
  color: #fdfdfd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  padding: 20px 10%;
}

#contact h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  margin-top: none;
  text-align: center;
}

#contact p {
  text-align: center;
}

#contact form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#contact input {
  height: 32px;
  padding: 8px;
  width: 100%;
  margin-bottom: 16px;

  border: none;
}

#contact textarea {
  height: 200px;
  padding: 8px;
  width: 100%;
}

#contact label {
  margin-bottom: 8px;
}

#contact button {
  background: #1c3733;
  padding: 16px 32px;
  color: #fdfdfd;
  margin: 16px 0;
  font-size: 1.2rem;
  text-decoration: none;
  align-self: center;
  border: none;
  cursor: pointer;
}

#contact button:hover {
  background-color: #e6e49f;
  color: #217482;
}

@media only screen and (max-width: 800px) {
  #hero {
    flex-direction: column;
  }
  #hero img {
    margin-right: 0;
  }
}