* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", sans-serif;
}

.image-container {
  width: 100vw;
  height: 100vh;
  background-image: url("../assets/img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
}

.inner-container {
  max-width: 1280px;
  width: 100%;
  margin: 45px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.logo-box {
  display: flex;
  gap: 62px;
  margin-bottom: 69px;
}

.con {
  display: flex;
  gap: 84px;
}

.info .logo-3 {
  width: 132px;
  height: 44px;
}
.app-img {
  width: 310px;
}

.info {
  padding: 38px 0;
}

.info p {
  font-size: 20px;
  color: #252729;
  line-height: 1.5;
}

.info p:first-of-type {
  padding: 24px 0 28px 6px;
}

.info p:last-of-type {
  color: #66686b;
  font-size: 14px;
}

.info strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.5;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 6px 63px;
}
.links a {
  cursor: pointer;
  background-color: rgba(23, 23, 23, 0.87);
  border-radius: 8px;
  width: 153px;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.bold {
  font-weight: 700;
}

@media (max-width: 640px) {
  .logo-box {
    gap: 25px;
    justify-content: center;
    margin-bottom: 74px;
  }
  .logo-box .logo1 {
    width: 110px;
    height: 32px;
  }
  .logo-box .logo2 {
    width: 138px;
    height: 32px;
  }
  .links {
    align-items: center;
  }
  .links a {
    width: 256px;
    justify-content: center;
    padding: 0;
  }
  .con {
    flex-direction: column;
    gap: 0;
    align-items: cneter;
  }
  .info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .info strong,
  .info p {
    text-align: center;
  }
}
