/*************** Reset *********************/
.helloSection {
  background-color: #f0e7c8;
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  width: 70%;
  margin: 3rem auto;
}

.helloimg {
  width: 60%;
  margin: auto;
}

.helloSection h1 {
  font-size: 36px;
  margin-bottom: 1rem;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.helloSection p {
  font-size: 18px;
  margin-bottom: 1rem;
}

.helloBenefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.benefit {
  background-color: #ffc166;
  padding: 1.5rem;
  border-radius: 1rem;
  width: 100%;
}

.benefit h3 {
  margin-bottom: 0.5rem;
}

.helloSection .button {
  width: 200px;
  margin-top: 1rem;
}

.login {
  background-color: #222222;
  color: white;
  padding: 0.5rem;
  margin-right: 1rem;
}

.login:hover {
  background-color: #323232;
}

@media (max-width: 900px) {
  .helloSection {
    width: 80%;
    margin: 3rem auto;
  }

  .helloBenefits {
    grid-template-columns: 1fr;
  }

  .benefit {
    width: 100%;
  }

  .helloimg {
    width: 100%;
    margin: auto;
  }
}
