body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ff5f5f;
  color: white;
  text-align: center;
  padding: 2rem;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 3.2rem;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 2px 2px #00000033;
}

main {
  padding: 2rem;
}

article {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-left: 6px solid #ff5f5f;
  background-color: #fff8dc;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}

article:hover {
  transform: rotate(-1.5deg) scale(1.02);
}

h2 {
  font-size: 2rem;
  color: #cc0000;
  margin-top: 0;
}

h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  color: #444;
  text-decoration: underline wavy #ff5f5f;
}

blockquote {
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to right, #ffe4e1, #fff);
  border-left: 6px solid #ff5f5f;
  font-style: italic;
  position: relative;
  color: #555;
}

blockquote::before {
  content: "“";
  font-size: 2.5rem;
  position: absolute;
  left: 10px;
  top: -10px;
  color: #ff5f5f;
}

blockquote::after {
  content: "”";
  font-size: 2.5rem;
  position: absolute;
  right: 10px;
  bottom: -10px;
  color: #ff5f5f;
}

ul, ol {
  margin-left: 2rem;
  padding-left: 1rem;
}

ul li, ol li {
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #333;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

article > * {
  transition: opacity 0.3s ease;
}
