
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: clamp(40px, 8vw, 120px) clamp(24px, 6vw, 80px);
  background: radial-gradient(circle at top left, #00274d, #0f172a);
  color: #fff;
  font-family: "Quicksand", sans-serif;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  margin-bottom: 16px;
  font-weight: 100;
}
.hero figure {
  padding: clamp(24px, 4vw, 48px);
}
.hero figure img {
  width: 100%;
}
.hero a.button {
  display: inline-block;
  margin-top: 4vw;
  padding: 12px 24px;
  border-radius: 999px;
  background: #00b4bf;
  color: #00274d;
  font-weight: 600;
  text-decoration: none;
}
p {
    color:#999;
}
@media only screen and (max-width:720px) {
  /* For mobile phones: */
  .hero figure img {
        width: 100%;
    }
  .hero figure {
        padding: 0px;
    }
    .hero {
        align-items: left;
    }
}