/* Basic reset */
body {
  margin: 0;
  padding: 0;
  background-color: #f7cfd6;
  font-family: Arial, sans-serif;
}

/* Main card */
.container {
  max-width: 600px;
  background-color: #fbe4e8;
  margin: 40px auto;
  padding: 30px;
  border-radius: 15px;
}

/* Title */
h1 {
  text-align: center;
  letter-spacing: 3px;
  color: #7a3b45;
}

/* Normal text */
.text {
  font-size: 14px;
  line-height: 1.6;
  color: #5a2f35;
  margin-top: 20px;
}

/* Highlight box */
.highlight {
  background-color: #f4a9b5;
  padding: 12px;
  margin: 20px 0;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
}

/* Image section */
.image-box {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
}

.image-box img {
  width: 100%;
  border-radius: 8px;
}

.caption {
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
  color: #7a3b45;
}

/* Journal section */
.journal {
  background-color: #ffffffaa;
  padding: 15px;
  border-radius: 10px;
  margin-top: 25px;
}

.journal h2 {
  margin-top: 0;
  color: #7a3b45;
}