body {
  background: url('../images/herobg.svg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

main {
  min-height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

main h1 {
  font-size: 3rem;
  font-family: "Impact", sans-serif;
}
.hero-cta {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 50px;
  background-color: #056bfa27;
  transition: background-color 0.3s ease;
}
.hero-cta:hover {
  background-color: #056bfa49;
}

main img {
  width: 66vw;
  max-width: 1400px;
  display: block;
  transition: transform 0.3s ease;
}
main img:hover {
  transform: translateY(-5px);
}