* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fbf8f4;
  color: #2c2c2c;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* BACKGROUND HEARTS */
#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* CONTENT */
.page {
  max-width: 540px;
  margin: 0 auto;
  padding: 76px 22px 104px;
}

.quiet {
  text-align: center;
  font-size: 14.5px;
  color: #666;
}

.quiet.top {
  margin-bottom: 26px;
}

.quiet.bottom {
  margin-top: 26px;
  min-height: 22px;
}

/* MAIN HEART */
.heart-wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

#heartCanvas {
  max-width: 100%;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.06));
}

/* LETTER */
.letter {
  margin-top: 80px;
}

.letter p {
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.9;
}

/* QUOTE */
.quote {
  margin: 90px 0;
  text-align: center;
}

.quote .intro,
.quote .outro {
  font-size: 14px;
  color: #777;
}

blockquote {
  font-style: italic;
  margin: 16px auto;
  line-height: 1.8;
  max-width: 92%;
}

/* QUESTION */
.ask {
  margin-top: 100px;
  text-align: center;
}

.ask h2 {
  font-weight: normal;
  margin-bottom: 36px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 26px;
}

button {
  padding: 13px 30px;
  border-radius: 999px;
  border: none;
  background: #ead8d8;
  cursor: pointer;
}

button:hover {
  background: #e1c4c4;
}

.answer {
  margin-top: 36px;
  font-size: 15.5px;
}
