body {
  background-color: #fff8dc;
  font-family: "Trebuchet MS", sans-serif;
  margin: 0;
  padding: 0;
  color: #444;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 30px;
  background: #fffbea;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

h1 {
  color: #d4a017;
}

nav a {
  margin: 10px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #f4c542;
  padding: 10px 20px;
  border-radius: 30px;
  transition: background 0.3s;
}

nav a:hover {
  background: #d4a017;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.day {
  background: #fff7d1;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.poem, .song {
  background: #fff7d1;
  margin: 15px 0;
  padding: 20px;
  border-radius: 15px;
  text-align: left;
}

.back {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #d4a017;
  font-weight: bold;
}

.sticker {
  position: absolute;
  width: 80px;
  opacity: 0.8;
}

.sticker1 {
  top: 10%;
  left: 5%;
}

.sticker2 {
  bottom: 10%;
  right: 5%;
}
