*{
    margin:0%;
    padding: 0%;
    font-family:'arial';
    line-height: 1.6;
}

html{
  background-color: forestgreen;
}

body{
    max-width: 80%;
    margin:auto;
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.5);
    padding: 20px;
    font-size: 14pt;
    background-color:white;
}

.mainBody{
  background-color:white;
}

.footer{
  background-color: green;
  left: 0;
  bottom: 0;
  width: calc(100% + 40px); /* override body padding */
  margin-left: -20px;       /* cancel padding */
  margin-right: -20px;
  margin-bottom: -20px;
}

.footerContent{
  padding: 20px;
  color: lightgreen;
}

.footerContent a{
  color:lightgreen;
}

#main{
    text-align: center;
    color: limegreen;
    font-size: 300%;
    padding-bottom: 20px;
}

#profileInfoTab{
    max-width: 80%;
    margin: auto;
    margin-top: 0%;
    margin-bottom: 30px;
    border-spacing: 20px;
}

#headshot{
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(144,238,144,0.9);
    height: 200px;
    width: 200px;
    object-fit: cover;
}

ul{
    list-style-type:square;
    margin-left: 40px;
    margin-bottom: 30px;
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* Dropdown Button */
.dropbtn {
    background-color: lightgreen;
    color: black;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: seagreen;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    float: right;
    position: static;
    display: inline;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  /* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}