/* Body Setup */
body {
  margin: 0;
  padding: 0;
  background: #ffeef8;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #333;
}

#wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.column {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* General temple box */
.temple {
  padding: 15px;
  border: 3px dashed white;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.4);
  text-align: center;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.temple:hover {
  transform: scale(1.02);
}

/* Pastel colors */
.pastel-pink   { background-color: #ffd1dc; }
.pastel-blue   { background-color: #d0e8f2; }
.pastel-lilac  { background-color: #e6ccff; }
.pastel-green  { background-color: #d4f5dc; }
.pastel-yellow { background-color: #fff5ba; }
.pastel-peach  { background-color: #ffe5b4; }

.temple h1 {
  margin: 0;
  font-size: 20px;
}

marquee {
  font-weight: bold;
  color: #777;
}
