@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Pretendard;
}
a,
button {
  cursor: pointer;
}

body {
  overflow: hidden;
}

.container {
  transform: translateY(-50%);
  max-width: 740px;
  margin: 50vh auto 0;
}

.title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #000;
}

.title img {
  width: 165px;
  height: 170px;
  display: block;
  margin: 0 auto 50px;
}

.title br {
  display: none;
}

hr {
  margin: 35px auto;
  border: 0;
  background-color: #000;
  height: 1px;
}

.description {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.636363;
  color: #000;
  text-align: center;
  margin-bottom: 35px;
}

.info-box {
  background-color: #ebf2fe;
  border-radius: 10px;
  padding: 30px 0;
  text-align: center;
  margin-bottom: 35px;
}

.info-box__item {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.818181;
}

.info-box__item strong {
  color: #1159c8;
}

.footer {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  text-align: center;
  word-break: keep-all;
}

@media (max-width: 800px) {
  body {
    overflow: auto;
  }
  .container {
    max-width: 600px;
    padding: 100px 15px;
    transform: none;
    margin: 0 auto;
  }
  .title {
    font-size: 32px;
  }
  .title img {
    margin-bottom: 30px;
    transform: scale(0.9);
  }
  hr {
    margin: 20px auto;
  }
  .description {
    margin-bottom: 25px;
    font-size: 18px;
  }
  .info-box {
    padding: 20px 0;
  }
  .info-box__item {
    font-size: 20px;
  }
  .footer {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .container {
    max-width: 500px;
  }
  .title {
    font-size: 26px;
  }
  .title img {
    margin-bottom: 0;
    transform: scale(0.64);
  }
  .title br {
    display: block;
  }
  .description {
    word-break: keep-all;
  }
  .description br {
    display: none;
  }
  .info-box {
    padding: 15px 0;
    margin-bottom: 20px;
  }
  .info-box__item {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .description {
    margin-bottom: 15px;
    font-size: 15px;
  }
  .info-box__item {
    font-size: 14px;
  }
  .footer {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .title {
    font-size: 24px;
  }
  .title img {
    transform: scale(0.55);
    margin-bottom: 0;
  }
  /* .description {
    margin-bottom: 15px;
    font-size: 16px;
  } */
  /* .info-box__item {
    font-size: 16px;
  } */
  /* .footer {
    font-size: 16px;
  } */
}
