/* whimsical maximalist musical css */

body {
  background: #fff0fa;
  font-family: "Comic Sans MS", Arial, sans-serif;
  color: #3b2b4a;
  margin: 0;
  padding: 20px;
}

/* wrapper with big silly border */
.wrapper {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #ffeef7;
  border: 6px dashed #ff9fbf;
  border-radius: 25px;
  box-shadow: 0 0 20px #ffb6d9;
}

/* header */
header h1 {
  font-size: 3rem;
  text-align: center;
  background: #ffffffcc;
  padding: 15px;
  border-radius: 20px;
  transform: rotate(-2deg);
  border: 3px solid #ffd6f0;
}

.subtitle {
  text-align: center;
  margin-top: 5px;
  font-size: 1.1rem;
  color: #7b4f7f;
}

/* panels */
.panel {
  background: #ffffffdd;
  padding: 20px;
  margin-top: 25px;
  border-radius: 20px;
  border: 3px solid #ffd6f0;
  transform: rotate(1deg);
  box-shadow: 0 0 10px #ffcce5;
}

.panel h2 {
  font-size: 1.8rem;
  margin-top: 0;
  font-family: "Comic Sans MS", cursive;
  background: #fff7ff;
  padding: 8px 12px;
  border-radius: 15px;
  border: 2px solid #ffb6d9;
  display: inline-block;
  transform: rotate(-1deg);
}

/* cute list markers */
ul li {
  list-style: none;
  padding-left: 10px;
  margin-bottom: 6px;
}
ul li::before {
  content: "♪ ";
  color: #ff7fbf;
  font-weight: bold;
}

/* animated music bars */
.wave {
  display: flex;
  gap: 5px;
  margin-top: 15px;
  height: 50px;
}
.wave span {
  flex: 1;
  background: linear-gradient(to top, #ff9fbf, #ffe28a);
  border-radius: 10px;
  animation: bounce 0.8s infinite alternate;
}
.wave span:nth-child(2){animation-delay:0.1s;}
.wave span:nth-child(3){animation-delay:0.2s;}
.wave span:nth-child(4){animation-delay:0.3s;}
.wave span:nth-child(5){animation-delay:0.4s;}

@keyframes bounce {
  from { height: 10%; }
  to { height: 100%; }
}

/* footer */
footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #7b4f7f;
}
