  /* 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." */



hr {
  border-top: 2px solid #34EB52;
}

a:link {
 color: #FAC8FA;
}


a:visited {
  color: #FAC8FA;
}

a:hover {
  color: #34EB52;
  text-shadow: 4px 4px 15px #32CF4A;
}

a:active{
  color: #3EDB39;
}

h1 {
  font-family: Arial;
  font-weight: bold;
  font-style: italic;
  font-size: 55px;
  text-shadow: 2px 2px 7px #FAC8FA;
}

h2 {
  font-family: Arial;
  font-weight: bold;
  font-style: italic;
  font-size: 36px;
}

h3 {
  font-size: 28px;
  text-align: left;
  margin: 5px 300px 5px;
}

h4{
  font-style: italic;
  font-size: 28px;
  text-align: left;
  margin: 5px 300px 5px;
  
}


body {
  background-color: #170433;
  font-family: "Times New Roman";
  text-align: center;
  color: #FAC8FA;
}


myindex {
  font-size: 20px;
  text-align: center;
}


p {
  font-size: 20px;
  text-align: left;
  margin: 15px 300px 35px;
}


/* -- current page */
cur {
  color: #34EB52;
  text-shadow: 5px 5px 5px #34EB52;
}
