html {
   background-color:white;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    width: 85%;
    margin: auto;
    border: 10px groove #507061;
    background-color:#cef8e5;
}


/**/
header {
    text-align: center;
    font-size: 300%;
}

/*NAVIGATION*/
#menu {
    border-bottom: 10px double #2E7051;
    padding-top: .5%;
    padding-bottom: .5%;
}
#menu ul{
    display: flex;
    list-style-type: none;
    justify-content: space-evenly;
    
}
#menu a{
    color: white;
    background: #507061;
    height: 3em;
    font-family: lato;
    font-weight: bold;
    font-size: 140%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .4s;
    border: 1px solid #9FA4C4;
}
#menu a:hover {
    background: #4DBD89;
}
#menu li {
    position: relative;
    text-align: center;
    width: 100%;
}
/*Drop Down Menu*/
#menu li:hover .subMenu > li {
    display: block;
    flex-direction: column;
    top: 0px;
    border: 1px solid #4DBD89;
}
.subMenu li{
    display: none;
    position: absolute;
    top: 0px;
}
.subMenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    
    width: 100%;   
}
.subMenu li{
    position: relative;
}

welcome {
    display: flex;
    flex-direction: column;
    padding-left: 1%;
    padding-right: 1%;
}

/*Section*/
section {
    display: flex;
    flex-direction: column;
    padding-left: 1%;
    padding-right: 1%;
}

section diva {
    color: red;
    text-align: right;
    float: right;
}

section divb {
    color: purple;
    float: left;
    
}

section img {
    margin-top: 1%;
    width: 55%;
    border: 10px ridge #2E7051;
}
/*Floats main images*/
diva img {
    float: right;
}
divb img {
    float: left;
}

div {
  
    margin: auto;
}

footer p {
	text-align: center;
    margin-top: 1%;
    margin-bottom: 1%;
    padding-top: 1%;
    border-top: 10px double #2E7051;
}

.videosMain {
    position: relative;
    margin-left: 5%;
    margin-top: 2%;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .videosMain > div {
    position: relative;
    padding-bottom: 75%;
    height: 0px;
  }
  
  .videosMain iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 80%;
    height: 80%;
  }

/*For Monthlies*/
#monthlyHeader{
    font-size: 150%;
    padding-bottom: 5%;
}
#art1 {
    font-size: 145%;
}
#moImages {
    align-items: center;
}

/*Main for mid bulk*/
main {
    margin-left: 1%;
    margin-right: 1%;
    
}
main img {
    width: 75%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1%;
    border: 10px ridge #2E7051;
}
main {
    margin-top: 1%;
}
main div1 {
    border: none;

}

/*style for about page main text*/
main.about {
    font-size: 200%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}