section.top-container {
  background-color: #060b0d;
  background-image: url("../../assets/images/index/top/top-section-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: white;
}

div.top-contents {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}

div.top-contents__text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

span.top-contents__text--title {
  text-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.9);
  font-size: 56px;
  font-family: Pretendard;
  font-weight: 700;
  line-height: 66px;
}

p.top-contents__text--description {
  text-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.9);
  font-size: 20px;
  font-family: Pretendard;
  font-weight: 500;
  line-height: 30px;
}

button.top-contents__button {
  border-radius: 4px;
  padding: 12px 50px;
  background-color: white;

  width: fit-content;

  color: #212121;
  font-size: 16px;
  font-family: Pretendard;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (max-width: 1024px) {
  section.top-container {
    background-image: url("../../assets/images/index/top/bg-mobile.png");
    background-size: cover;
    color: white;

    height: 540px;
  }

  div.top-contents {
    align-items: center;
    row-gap: 40px;
  }

  div.top-contents__text {
    align-items: center;
    row-gap: 22px;

    max-width: 295px;
  }

  span.top-contents__text--title {
    text-align: center;
    font-size: 34px;
    line-height: 40px;
  }

  p.top-contents__text--description {
    text-align: center;

    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
}
