.hero-section {
  position: relative;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}

.hero-content {
  position: relative;

  z-index: 2;

  width: 100%;

  margin: 0 auto;

  text-align: center;
}

.hero-title {
  margin: 20px 0;
}

.hero-button {
  position: relative;
}

.hero-button::after {
  content: "";

  position: absolute;

  bottom: -10px;

  left: 0;

  width: 100%;

  height: 1px;

  background-color: #fff;
}

@media screen and (max-width: 480px) {
  .hero-title {
    display: flex;
    flex-direction: column;
  }
}
