body {
        background-image: url("../img/Webpage background only.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        background-color: black;
 
}
.column-layout{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center; 
}

.main-left{
       order: 1;
       flex-basis: 40%;
       display: flex;
       flex-wrap: wrap;
       align-items: center;
       justify-content: center;}

.main-right{
      order: 2;
      flex-basis: 50%;
      display: column;
      flex-wrap: wrap;
      align-items: left;
      justify-content: center;
}

.header{
    color: white;
    font-family: minion pro;
    padding: 0px 20px 0px 20px;
    font-size: 23px;
    text-shadow: 2px 2px #bbcca0;
    order: 3;
    flex-wrap: wrap;
     justify-content: left;
}

.section {
    color: white;
    padding: 0px 20px 0px 20px;
    text-align: left;
    font-size: 20px;
    order: 4;
     justify-content: flex-start;
 }
 
.responsive {
     width: 70%;
     height: auto;
}


.bottom{
      color: white;
  
}

#menu li{
     flex: 0;
     list-style-type: none;
     width: 15em;
     text-align: center;
     margin-left: -3em;
     text-indent:  3em;
     font-size: 20px;
     font-style: italic;
     line-height: 45px;
      justify-content: center;

 }
    
li ul{
     display: none;
     width: 30em;
     text-align: justify;
     margin-left: -3em;
     text-indent:  1.5em;
     color: white;
     font-style: normal;
    
}
    
li:hover > ul {
     display: block;
    }
 
    
#menu a {
     text-decoration: none;
     color: white;
     display: block;
     background-image: url("../img/buttonshading.png");
     margin-bottom: 12px;
     min-height: 2.5em;
     vertical-align: middle;
     width: 17.5em;
     
    }
    
#menu a:hover {
     background-image: url("../img/buttonhover.png");
     box-shadow: 3px 3px 3px gray;
     border: none;
    }

ul {
     list-style-type: none;
     margin: 0;
     padding: 0;
}

.footer{
        clear: both;
        color: white;
        flex: 0;
        padding: 0px 0px 0px 0px;
        text-align: center;
        justify-content: center;
 
}
 

a {
        color: white;
        text-decoration: none;
        text-shadow: 1px 1px #545b4f;
}

a:visited {
           text-decoration: none;
           color: white;
           text-shadow: 1px 1px #545b4f;
}

a:hover {
        color: #bbcca0;
}



@media (min-width: 400px){
  .column-layout{
     
  }
  
}