 /* The side navigation menu */
/*
main -  #ebcdb7;
secondary - #d5a88c;
tertiary - #CE796B
accent - #C18C5D
outlines/borders - #495867



*/
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  background-color: #111; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* credit to w3 for the sidebar examples*/
/* The navigation menu links */
.sidenav 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 */
.sidenav a:hover {
  color: #f1f1f1;
}

#projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 20%;
    margin-top: 5%;
}
.column img {
    max-width: 100%;
    height: auto;
    display: block;

}









/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
#openbtn {
  position: absolute;
  top: 2px;
  right: 25px;
  font-size: 20px;
  margin-left: 50px;
  width:40px;
  height:40px;
  
  background-color: #d5a88c;
  border-radius: 50%;
  box-shadow: 0px 3px #555555  
}
#openbtn:hover{
    background-color: #bb9781;
    top: 4px;
    border-color: #818181;
    box-shadow: 0px 1px #555555  
    
}

#links{
    text-align: center;
    text-decoration: none;
}
#title {
    text-align: center;
    font-size: 50px;
}
#subtitle {
    text-align: center;
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    
}
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}
body {
    background-color: #ebcdb7;
}
/* 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) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
} 