/* index page */

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
ul li {
    float: left;
    width: 250px;
    height: 40px;
    background-color: black;
    opacity: .8;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    margin-right: 2px;
}
ul li a {
    text-decoration: none;
    color: whitesmoke;
    display: flex
}
ul li a:hover{
    background-color: hotpink;
    border-bottom: 1px solid black;
}
ul li ul li {
    display: none;
    z-index: 1;
}
ul li:hover ul li {
    display: block;
    z-index: 1;
}

/* index page */

.index-content-wrapper {
   padding-left: 200pt;
   padding-right: 200pt;
    width: 50 px;
    height: 400px;
    margin: 100px auto;
    line-height: 2;
}

/* Bio page */

.profile-content-wrapper {
    padding-left: 250pt;
    padding-right: 250pt;
    width: 100 px;
    height: 300px;
    margin: 100px auto;
    line-height: 2;
}

.profile-content-wrapper h1{
    color:peachpuff;
}
 
h1 {
    color:peachpuff;
}

p {
    color:peachpuff;
}

/* contact page*/

.contact-content-wrapper {
    width: 360px;
    height: 360px;
    margin: 100px auto;
    line-height: 2;
}

/* classes page */

a:link {
    color: whitesmoke; 
    background-color: transparent; 
    text-decoration: none;
    font-size: 20px;
    text-align: left;
  }



