/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: purple;
  background-image:url("https://file.garden/ZnWhRmqyz2UOBj7r/IMG_4211.jpeg");
  background-repeat: repeat; 
  font-family: "Glass Antiqua", cursive;
  color: white; 
  font-weight: 400;
  font-style: normal;
  font-size: 27pt;
  word-spacing: 10px;
  white-space: normal; 
  padding: 20pt;
  outline: solid gold 3px;
}

h1 { 
  font-family: "Fleur De Leah", cursive; 
  font-size: 80pt;
  text-align: center;
  text-shadow: 0 0 3px #bc96f6;
}
h2{
  font-size: 40pt;
}

li::marker {
  content: "star"; 
  color: gold;
}

footer {
  font-family:"Fleur De Leah", cursive;  
  text-align: center;
}

div{
  width: 800px;
  background-color: black; 
  border-left: 2px solid gold;
  border-radius: 20px;
  padding: 40px 30px 40px;
  margin: 40px 20px 20px;
}

navigation {
  text-align: center; 
}

div2{
  width: 800px;
  background-color: plum; 
  border-left: 2px dotted gold; 
  border-radius: 20px;
  padding: 40px 30px 40px;
  margin: 40px 20px 20px; 
}

a:link, a:visited {
  background-color: #2d1341;
  color: gold;
  border: 3px #70b07e;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: black;
  color: white;
}

img{
  vertical-align: text-bottom;
}


link {
  color: white; 
  font-weight: 800; 
  font-size: 30pt; 
}