/* Background */
body {
  font-family: Verdana, sans-serif;
  color: black;
  background: antiquewhite;
  margin: .5in;
  border: 12px double purple;
  border-radius: 50px;
  padding: 1in;
}

/* Title */
h1 {
  font-family: Verdana, sans-serif;
  font-size: 64pt;
  text-align: center;
  color: purple;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

/* Headers */
h2 {
  font-family: Verdana, sans-serif;
  font-size: 24pt;
  text-align: center;
  color: white;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  padding: 0.8em 1em;
  background: linear-gradient(135deg, coral, purple); 
  border-radius: 100px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Text */
p {
  font-size: 14pt;
  line-height: 1.5em;
  margin: 1em;
  padding: 1em;
  background: bisque; 
  border: 3px solid coral;
  border-radius: 50px;
}

/* Links */
a {
  color: coral;
  text-decoration: underline;
  font-weight: bold;
}

a:hover {
  color: purple;
  text-decoration: underline;
}

a:visited {
  color: crimson;
}

/* Images */
img {
 display: block;
 margin: 1em auto;  
  border-radius: 25px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 12pt;
  color: black;
}
