/* Background */
body {
  font-family: "Arial Rounded MT Bold", Arial, sans-serif;
  background: linear-gradient(135deg, powderblue, white, powderblue);
  padding: 1in; 
}

/* Title */
h1 {
  font-size: 50px;
  text-align: center;
  border-bottom: 5px inset turquoise;
  color: mediumpurple;
  font-family: "Arial Rounded MT Bold", Arial, sans-serif;
}

/* Headers */
h2 {
  font-size: 36px;
  color: mediumpurple;
  padding: 20px 50px; 
  margin-top: 25px;
  display: inline-block;   
  background: turquoise;
  border-radius: 50px;
  text-align: center;
}


/* Text */
p {
  font-size: 16px;
  color: darkslateblue;
  line-height: 1.5em;
  margin: 10px 0;
}

/* Links */
a {
  color: turquoise;
  text-decoration: underline;
  font-weight: bold;
  font-size: 20px;
}

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

a:visited {
  color: darkorchid;
}

/* Images */
img {
  max-width: 100%; 
  height: auto;    
  border-radius: 20px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 2px double color:orchid;
  font-size: 1em;
  color: darkslateblue;
}

