/* comments here */
body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(124, 181, 204);
    display: flex;
}

.sidenav {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 125px; /* 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: medium;
    color: #818181;
    display: block;
}

#heading{
    flex-basis: 100%;

}

#intro {
    display: flex;
    flex-direction: row;
}

.main {
    padding-left: 150px;
    display: flex;
    flex-wrap: wrap;
    
}

p {
    margin: 2%;
}

.blurb {
    padding: 0px 10px;
    display: flex;
}


button{
    background-color: rgb(13, 27, 219);
    border-radius: 1em;
    color: white;
    padding:.5em;
}

nav li {
  background-color: #2b0ae7;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  display:inline; 
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  text-decoration: none;
  
}

nav li a{
    color:white;
    text-decoration: none;
}

