/*INFO TEXT - No need to copy this*/

/* fixed side social buttons */
#mySidenav a {
  position: absolute; /* Position them relative to the browser window */
  left: -65px; /* Position them outside of the screen */
  transition: 0.3s; /* Add transition on hover */
  padding: 10px; /* 15px padding */
  width: 50px; /* Set a specific width */
  text-decoration: none; /* Remove underline */
  font-size: 20px; /* Increase font size */
  color: white; /* White text color */
  border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
  margin-top: 15%;
  position: fixed;
  z-index: 1;
  padding-right: 65px;
}

#mySidenav a:hover {
  left: 0; /* On mouse-over, make the elements appear as they should */
}
/* The about link: 20px from the top with a green background */
#mySidenav .fa-facebook,
#mySidenav .fa-twitter,
#mySidenav .fa-instagram,
#mySidenav .fa-youtube {
  margin-left: 15px;
  font-size: 30px;
}
#about {
  top: 20px;
  background-color: #3a5795;
}
#blog {
  top: 80px;
  background-color: #78bdf1;
}
#projects {
  top: 140px;
  background-color: #ff287b;
}
#contact {
  top: 200px;
  background-color: red;
}

/* Make the icon Spin OPTIONAL */

.mySidenav .fa-facebook,
.mySidenav .fa-twitter,
.mySidenav .fa-youtube {
  -ms-transform: rotate(0deg); /* IE 9 */
  -webkit-transform: rotate(0deg); /* Safari and Chrome */
  -o-transform: rotate(0deg); /* Opera */
  -moz-transform: rotate(0deg); /* Firefox */
  transform: rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mySidenav .fa-facebook:hover,
.mySidenav .fa-twitter:hover,
.mySidenav .fa-youtube:hover,
.mySidenav .fa-instagram:hover {
  -ms-transform: rotate(360deg); /* IE 9 */
  -webkit-transform: rotate(360deg); /* Safari and Chrome */
  -o-transform: rotate(360deg); /* Opera */
  -moz-transform: rotate(360deg); /* Firefox */
  transform: rotate(360deg);
  transition: all 0.3s;
}

@media(max-width:1000px) {
  #mySidenav{
    display: none;
  }
}