html {
    height: 100%;
}

body {
    background-color: #f8ebeb;
    background-size: cover;
    font-family: 'Bellota Text';
    color: #001850;
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

.homelogo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-0%, -50%);
    display: flex;
}

.hometext {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-80%, -50%);
    color: #001850; 
}

a {
    color: #001850;
}

.homeline1 {
    margin: 0;
    padding: 0;
    font-size: 20px;
}

.nopadding {
    margin: 0;
    padding: 0;
}

.homedetail {
    color: grey;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.ahome {
    background-color: #001850;
    border: none;
    color: #f8ebf8;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.allpagesheader {
    font-size: 50px;
    text-align: center;
    text-decoration: none;
}
 nav a {
     text-decoration: none;
     padding: 15px;
 }

 #bupic {
    display: inline-block;
    text-align: center;
    float: left;
    width: 50%;
 }

 #tudpic {
    display: inline-block;
    text-align: center;
    float: right;
    width: 50%;
 }

 #mcnairpic {
    display: inline-block;
    text-align: center;
    float: center;
    width: 50%;
 }

 .roundedcorner {
    border-radius: 25px;
    background-position: left top;
    background-repeat: repeat; 
    border:5px solid #99c5c4;
 }

 /*ABOUT ME HOVERABLE BUTTON*/
 .dropbtn {
    background-color: #f8ebeb; /*button*/
    color: #001850;
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  .dropdown { /*button outline*/
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {/*dropdown*/
    background-color: #e0e0e0;
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
  }
  
  .dropdown-content a {
    color: #001850;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
      background-color: #f1f1f1;
    }
  
  .dropdown:hover .dropdown-content {
      display: block;
    }
  
  .dropdown:hover .dropbtn {
      background-color: #e0e0e0;
    }
  /*END OF HOVERABLE DROP DOWN*/

  .sidebarleft {
    display: inline-block;
    text-align: left;
    float: left;
    width: 20%;
    background-color: rgba(224, 224, 224, 0.5);
  }

  .restofpage {
    display: inline-block;
    text-align: left;
    float: left;
    width: 80%;
  }

  /*sticky sidebar*/
  .sidenav {
    position: fixed; /*AFFECTS EFFECT*/
    z-index: 1;
    background: #e0e0e0;
    overflow-x: hidden;
    padding: 8px;
    padding-left: 8px;
    width: 15%;
  }
  
  .sidenav a {
    text-decoration: none;
    color: #001850;
  }
  
  .sidenav a:hover {
    background-color: #f1f1f1;
  }
  
  .blogposts {
    margin-left: 28%;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

  /*SCROLL TO TOP*/
  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #e0e0e0;
    color: #001850;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    background-color: #f1f1f1;
  }
