 .body, html{
    min-height: 100%;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: rgb(27, 27, 27);
 }
 
 
 .hamburgerMenu {
    display: inline-block;
    cursor: pointer;
  }
  
  .hamburgerBar1, .hamburgerBar2, .hamburgerBar3{
    width: 35px;
    height: 5px;
    background-color: #c7c7c7;
    margin: 6px 0;
    transition: inherit;
  }
  
  /* Rotate first bar */
  .change .hamburgerBar1 {
    transform: translate(0, 11px) rotate(-45deg);
  }
  
  /* Fade out the second bar */
  .change .hamburgerBar2 {opacity: 0;}
  
  /* Rotate last bar */
  .change .hamburgerBar3 {
    transform: translate(0, -11px) rotate(45deg);
  }

 .sidebar {
    padding-top: 84px;
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    top: 0;
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
    border: #f1f1f1;
  }
  
  /* The sidebar links */
  .sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidebar a:hover {
    color: #f1f1f1;
  }
  
  .sidebarButton {
    position: fixed;
    top: 18px;
    left: 18px;
    font-size: 20px;
    cursor: pointer;
    background-color: #7a7a7a;
    color: white;
    padding: 10px 15px;
    border: none;
  }
  
  .sidebarButton:hover {
    background-color: #a8a8a8;
  }

  .websiteUnderConstructionVideo {
    transform: translatez(0);
    position: absolute;
    top: -100%;
    bottom: -100%;
    left: -100%;
    right: -100%;
    margin: auto;
    min-width: 100%;
    min-height: 100%;
  }

  .websiteUnderConstructionMessage {
    position: relative;
    text-align: center;
    color: white;
    text-shadow: 0 0 5px black, 0 0 15px orange;
  }

  .aboutMePage {
    display: flex;
    align-items: center;
  }
  .aboutMe {
    max-width: 50%;
    margin: 100px;
    background-color: white;
    border-radius: 20px;
    margin: auto;
    margin-top: 20px;
    padding: 20px;
    /*max-width: 600px;*/
  }
  .aboutMeVideo {
    width: 100%;
    height: 100%;
    max-width: 764;
    max-height: 668;
  }
  

  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidebar {padding-top: 15px;}
    .sidebar a {font-size: 18px;}
  } 
