/* Whole page stays simple */
 {body {
  background-color: pink;
}

  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Bottom styled area */
.styled-area {
  background: radial-gradient(circle at top, #ff7ecb, #2b1a5f); /* pretty gradient */
  color: Pink;
  padding: 40px 20px;
  text-align: center;
}

/* Big bold heading like your classmate's */
.styled-area h1 {
  font-size: 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Paragraph text: easier to read */
.styled-area p {
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.6;
}

/* Image with border radius + shadow */
.styled-area img {
  display: block;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.6);
}

