.hero-container{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 40px;
  opacity: 1;
  padding: 0 20px;
  margin-bottom: 80px;
}

.hero-container img{
  margin: 100px 0 0 0;
  width: 80%;
  height: auto;
  display: block;
}

.hero-container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

h1{
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color:#1E5772;
  max-width: 375px;
  font-family: "Bubbler One", serif;
}

.hero-container p{
  margin: 30px 20px 40px 20px;
  margin-right: 20px;
  text-align: center;
}

.buttons{
  display: grid;
  grid-template-columns: 1fr;
}

button{
  display: flex;
padding: 13px 32px 13px 22px;
align-items: center;
border-radius: 50px;
background: #1E5772;
color: #FFF;
text-align: center;
font-size: 24px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
border: none;
}

button svg{
  fill: white; 
  margin-left: 10px; 
}

.default{
  margin-bottom: 30px;
  transition: all 0.5s ease;
}

.default:hover{
  cursor: pointer;
  background: #287295;
}

.alternate{
  color: #F66F61;
  background: none;
  box-shadow: none;
}

.alternate:hover{
  cursor: pointer;
}

.alternate svg{
  fill: #F66F61;
}

.hero-line{
  opacity: 0;
  transform: translateY(24px);
}

