* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* main */
body{
  background-color: #ffcce6;
  font-family: "Nanum Pen Script", cursive;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  padding: 20px;
  overflow:hidden;
}

.container {
    text-align: center;
    max-width: 500px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-style: italic;
  font-weight: normal;
}

.note {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-style: italic;
  font-weight: normal;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 18px;
  background-color: #fdf6f0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#confirmBtn {
  width: 100%;
  padding: 12px;
  background-color: #b3667a;
  color: #fdf6f0;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

#confirmBtn:hover {
  background-color: #995566;
}
