body {
  background-image: url('./images/background.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100svh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  padding-top: 109px;
}

.wrapper .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 744px;
  margin: 0 auto 36px;
  padding-right: 116px;
}

.wrapper .logo-container .logo {
  width: 367px;
}

.wrapper .title-container {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.wrapper .title-container .title {
  width: 744px;
  z-index: 2;
}

.wrapper .btn-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  height: 34px;
  z-index: 1;
}

.wrapper .btn-container .btn {
  width: 741px;
  height: 401px;
  margin: -300px -140px;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.wrapper .btn-container .btn:nth-child(1) {
  background-image: url('./images/bt_1.png');
}
.wrapper .btn-container .btn:nth-child(2) {
  background-image: url('./images/bt_2.png');
}

.wrapper .desc-container {
  margin-bottom: 10px;
  font-size: 30px;
  color: white;
  text-align: center;
}

.wrapper .btn2-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .btn2-container .btn {
  width: 974px;
  aspect-ratio: calc(974 / 147);
  max-width: calc(100vw - 90px);
  background-image: url('./images/bt_3.png');
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

/** tablet */
@media (max-width: 1440px) {
  .wrapper {
    padding-top: 105px;
  }
  .wrapper .logo-container {
    margin-bottom: 40px;
  }
}

/** mobile */
@media (max-width: 700px) {
  .wrapper {
    padding-top: 55px;
  }
  .wrapper .logo-container {
    margin-bottom: 38px;
    padding-right: 90px;
  }
  .wrapper .logo-container .logo {
    width: 275px;
  }
  .wrapper .title-container {
    margin-bottom: 6px;
  }
  .wrapper .title-container .title {
    width: calc(100vw - 90px);
  }
  .wrapper .desc-container {
    font-size: 25px;
  }
  .wrapper .btn-container {
    flex-direction: column;
    margin-bottom: 6px;
    height: 150px;
  }
  .wrapper .btn-container .btn {
    width: calc(100vw - 64px);
    margin: -100px;
  }
}

/** mobile */
@media (max-width: 400px) {
  .wrapper .logo-container {
    padding-right: 1vw;
  }
  .wrapper .desc-container {
    font-size: 20px;
  }
}
