* {
    margin: 0; padding: 0; 
    background-color: #1a9c08;
}

body {
    background-color: #1a9c08;
    font-family: Arial, Helvetica, sans-serif;
    
}
#header {
    background-color: white;
    display: flex;
    justify-content: center;
}
#header img, #footer div img {
    max-width: 100%;
    min-width: 600px;
}
#main ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 400px;
}
ul li { 
    display: inline; 
    margin: 0;
    padding: 0;
    flex-basis: 48%;
}
@media (min-width: 420px) {
    ul li { 
        flex-basis: auto;
    }
}
ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

#container {
    max-width: 1100px;
    margin: auto;
    margin-top: 40px;
    position: relative;
    background-color: #1a9c08;
}
#main {
    padding-top: 20px;
}


#main img {
    /*width: 200px;
    height: 108px;*/
    display: block;
    max-width: 200px;
}
#footer {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-flow: column;

    
}
#footer {
   padding-top: 20px; 
}
#footer > div {
    background-color: white;
    display: flex;
    justify-content: center;
 }

#footer p {
   margin : 20px auto;
   text-align: center;
}
#footer a {
    font-family: Arial, Verdana;
    color: #235D1B;
    text-decoration: none;
    padding: 0 10px;
}
