html, body {
    padding: 0;
    margin: 0;
    font-family: arial, sans-serif;
    background: #3498DB;
}

.logo{
    /*background-image: url(../images/logo.jpg);
    background-repeat:no-repeat;
    height: 87px;*/
    margin-left:10px;
}

.topRow{
  background: #3498DB;
}
.mainRow{
    /*flex: 0 0 1000px;
    background-image: url(../images/maincontent.jpg);
    height:650px;
    padding-left: 70px;
    padding-right: 60px;*/
    background-color: #fff;
    margin-left: 15px;
    margin-right: 15px;
    min-height: 400px;
}

.footRow{
    color: white;
    text-align: center;
    margin-top: 5px;
    font-size: 12px;
  }

.nav {
  width: 100%;
  background: #3498DB;
  margin-left: 0px;
}

label {
    display: block;
    cursor: pointer;
    color: white;
}

.menu {
    text-align: center;
    width: 100%;
    display: none;
    background: #3498DB;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0; 
}
.menu ul li a {
    display: block;
    border-bottom: 1px solid #EAEAEB;
    margin: 0;
    color: white;
 
}

#toggle:checked + .menu {
    display: block;
}