section.getting-started-container {
  padding: 132px 0;
  background-color: #2e3032;

  color: white;
}

div.getting-started-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
}

span.getting-started__title {
  text-align: center;
  font-size: 40px;
  font-family: Pretendard;
  font-weight: 700;
  line-height: 54px;
}

div.getting-started__button-container {
  display: flex;
  align-items: stretch;
  column-gap: 18px;
}

button.getting-started__button-container__button.--outlined,
button.getting-started__button-container__button.--filled {
  border-radius: 4px;
  padding: 12px 50px;

  width: fit-content;

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

button.getting-started__button-container__button.--outlined {
  border: 1px solid #a4aaae;

  color: white;
}

button.getting-started__button-container__button.--filled {
  border: 1px solid white;
  background-color: white;
}

@media screen and (max-width: 1024px) {
  div.getting-started-contents {
    row-gap: 52px;
  }

  span.getting-started__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 40px;
  }

  div.getting-started__button-container {
    justify-content: space-between;
    column-gap: 12px;
  }

  button.getting-started__button-container__button.--outlined,
  button.getting-started__button-container__button.--filled {
    padding: 12px 30px;
  }
}
