/* styles.css */

body {
  font-family: 'Noto Sans CJK KR', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  background-color: #ffffff;
  border-radius: 32px;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

img {
  width: 220px;
  height: 250px;
}

.message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #191919;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.bold-text {
  font-weight: 700;
}

.info-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.label {
  width: 82px;
  padding: 6px 12px;
  background: #1B68FA;
  border-radius: 999px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.value {
  font-size: 18px;
  font-weight: 500;
}

@media only screen and (max-width: 428px) {
.container {
  padding: 60px 30px;
}
.info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
  .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }  
}