 /* === GLOBAL RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === BODY === */
body {
  background: url('https://wallup.net/wp-content/uploads/2017/03/29/492527-Anthro-furry.jpg') 
              no-repeat center center fixed;
  background-size: cover;
  font-family: "Comic Sans MS", cursive, sans-serif;
  text-align: center;
  color: white;
  line-height: 1.6;
}

/* === OVERLAY FOR READABILITY === */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
  z-index: -1;
}

/* === HEADER === */
header {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem 1rem;
  border-bottom: 4px solid #facc15;
}

header h1 {
  font-size: 2.5rem;
  color: #facc15;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === MAIN CONTENT === */
main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* === SECTIONS === */
section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease-in-out;
}

section:hover {
  transform: scale(1.02);
}

/* === HEADINGS === */
h2 {
  color: #fcd34d;
  font-size: 1.8rem;
  border-left: 5px solid #facc15;
  padding-left: 10px;
  margin-bottom: 1rem;
  text-align: left;
}

/* === PARAGRAPHS === */
p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: left;
}

/* === FOOTER === */
footer {
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  border-top: 4px solid #facc15;
  font-size: 0.9rem;
  color: #ddd;
}
