/* STYLE SECTIONING TAGS */
*{
  margin: 0px;
  padding: 0px;
}
body {
 background-color: #AC9FB7 ; 
  text-align: center;
}

header{
  background-color: #544C73;
  margin-bottom: 1em;
}
/* STYLE TEXT */

h1 {
  color: #F5F5F5;
  text-align: center;
  font-family: Arial Black;
  padding-top: 1em;
  padding-bottom: 1em;
}

p {
  color: #171717;
}

button {
  font-size: 24px;
  margin-top: 1em;
}

h2 {
  padding-top: 20px;
  margin-bottom: 1em;
}

main {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 20%;
  margin-left: 20%
}

/* STYLE IMAGES */
img {
  max-width: 50%;
  border-radius: 30%;
  max-height: 300px;
  border: 3px solid white;
  margin-bottom: 2em;
}

.box {
  border: 1px solid white;
  background-color: white;
  font-size: 19px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 1em;
}

#gradPic{
  border-radius: 10%
}

.box li {
  overflow: hidden;
  text-align: center
}


/* STYLE NAV BAR */
nav ul{
  list-style-type: none;
  background-color: #302940;
  overflow: hidden;
  padding: 1em;
}

nav li {
  display: inline;
}

li a {
  text-decoration: none;
  color: white;
  font-size: 1.3em;
  padding: 1em;
}

li a:hover {
  background-color: #43D6B9
}