/* The sidebar menu */
.sidenav {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 160px; /* Set the width of the sidebar */
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color:  #5D737E; /* Black */
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 20px;
    color: #5D737E;
  }
  #smallNav {
    font-size: 15px;
    color: white;
}

#smallNav:hover {
    color: #FEE440;
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #FEE440;
  }
  /* Style page content */
.main {
  margin-left: 160px; /* Same as the width of the sidebar */
  
  padding: 0px 10px;
 
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  
}

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


#logo{
    color: #FEE440;
    font-weight: bold;
    line-height: 0.75;
}

#logo:hover{
  color: white;
}

#ReelLink{
    color: black;
    text-align: center;
    text-decoration: underline;
    font-weight: bold;
}

#LinkDiv{
    position: absolute; 
    color: black; 
    background-color: white; 
    padding: 10px; 
    border-radius: 5px; 
    top:80%; 
}

#LinkDiv:hover{
background-color: black;
color: White;
#ReelLink{
    color: white;
}
}



#videoContainer{
    display: flex;
    justify-content: center;
}

h2{
    margin-top: 0;
}

#aboutMe{

    display: flex;
    justify-content: center;
    align-items: center;
    margin:auto;
    
    width:1066px;
    position: absolute;
    box-sizing: content-box;
    max-width: 100%;
    max-height: 100%;
    
   object-fit: contain;
}

#aboutMe img{
    margin-right: 3em;
    margin-bottom: 1em;
    border-radius: 10px;
    max-width: 35%;
    height: auto;
    object-fit: contain;
    top:0%;
    max-height: fit-content;
    
   
}

#aboutParagraph{
    background-color: #5D737E;
    color: white;
    height: 20em;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    font-size: large;
    font-weight: bold;
    justify-content: center;
    
    text-align: center;
    
}