/* 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: #111; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #FFFFFF;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #F9AAAA;
}

/* Style page content */
.main {
  margin-left: 160px; /* Same as the width of the sidebar */
  padding: 0px 10px;
}

/* 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;}
}
/*body*/
body {
    background-color: #002b3d;
    color: #FFFFFF;
      font-family: "Fascinate Inline", sans-serif;
    padding: 3em;
}

/*Fonts*/
h1 {
    font-family: "Fascinate Inline", sans-serif;
    font-size: 3em;
    text-align: center;
}

/*Fonts*/
a {
    background-color: #002b3d;
    color: #F9AAAA;
      font-family: "Nunito", sans-serif;
    /*padding: 3em;*/
}

/*Hover*/
a:hover {

   background-color: #000000;
   color: #008080;

}

/*image*/
img {
    border: 3em solid #000000;
    width
    border-radius: 50px;}
    
    
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 2em 0 auto;
}

.box {
  flex-basis: 25%;
  margin: 1.5em;
  border-radius: 10px;
  padding: 1em;
}

/* SETTING THE IMAGE WIDTH HERE INSTEAD OF IN HTML. REMOVE WIDTH="XXX%" FROM ANY HTML IMAGE TAGS INSIDE BOX DIVS */
.box img {
  max-width: 100%;
  display: block;
  margin: auto;
}


/*cursor*/
div {
    cursor:grab;}
    
    /*padding*/
    h1, h2, p{
        padding-bottom: 1em;
    }
