body {
    background-color: PeachPuff;
    background-image: url("PeachBackground.jpg");
    background-repeat:repeat;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    width: 80%;
    margin: 0 auto;
}
/*Logo styling to be added later*/

/* Add a black background color to the top navigation */
.menu-nav {
  background-color: #FFEFD5;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.menu-nav a {
  float: left;
  display: block;
  color: #000080;
  text-align: center;
  padding: 20px 20px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

/* Change the color of links on hover */
.menu-nav a:hover {
  background-color: #E0FFFF;
  color: #B22222;
}

/* Add an active class to highlight the current page */
.menu-nav a.active {
  background-color: #E0FFFF;
  color: indigo;
}

/* Hide the link that should open and close the menu-nav on small screens */
.menu-nav .icon {
  display: none;
}
li {
    list-style: none;
}

#main-content {
    margin: 20px 0;
    color: #000000;
}

#main-content h1 {
    font-size: 40px;
    line-height: 0;
    color: #000000;
    text-align: center;
}

#homeHero {

    background: rgb(135,206,250);
    background: linear-gradient(90deg, rgba(182,225,252) 0%, rgba(231,245,254) 48%,
    rgba(135,206,250) 100%);
    width: 100%;
    float: left;
    margin-right: 2%;
    padding: 4%;
    -webkit-box-shadow: 7px 9px 10px -5px rgba(0,0,0,0.12);
    -moz-box-shadow: 7px 9px 10px -5px rgba(0,0,0,0.12);
    box-shadow: 7px 9px 10px -5px rgba(0,0,0,0.12);
    padding-bottom: 50px;
    width: 100%;

    }

#homeHero h1 {
    font-size: 60px;
    line-height: 1;
    color: #000000;
    text-align: center;
}

#homeHero h2 {
    font-size: 30px;
    line-height: 1.5;
    color: #000000;
}

#homeHero p {
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
}

#homeHero img {
    align-content: middle;
    float: middle;
}
/*Fixed sidebar*/
#sidebar {

    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;
}

}
#sidebar h3, p {
    color: #333;
}

.images {
    width:50%;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

section  {
    clear:both;
}

header {
    background-color:#FFDAB9;
    font-size: 50px;
    padding: 15px 15px;
    text-align: center;
    margin-bottom: 10px;
}

header h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 60px;
    font-weight: 400;
    }

.container {
    width: 46%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 100px;
    padding-bottom: 20px;
}
.container p {
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
}
.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}