body{
    background-color: #F4F3DC;
    color: #A33434;
    font-family: Effra, Arial, sans-serif;
    margin: 0px;
}

* { box-sizing: border-box; }

#greybar {
    background-color: #AAAA8C;
    grid-area: 1 / 1 / 2 / 10;
}

header { 
    line-height: 180%;
    background-position: left;
    background-size: auto;
    padding-left: 1rem;
    padding-top: .5rem;
    height: auto;
    grid-area: 1 / 2 / 2 / 9;
}

header a {
    text-decoration: none;
}


nav {
    font-weight: bold;
    padding: 20px 5px 0px 20px;
    top: 0;
    grid-area: 2 / 2 / 3 / 9;
}

nav a {
    text-decoration: none;
    color: #A33434;
    padding: 1rem 0rem;
    display: block;
    text-align: center;
}

nav a:hover {color: #686756;}

nav ul {
    list-style-type: none;
    display: flex;
    flex-flow: row nowrap;
    padding: 0;
    margin: 0;
}

nav ul li {
    width: 100%
}

.gallery {
    grid-area: 5 / 3 / 6 / 8;
    
}

.gallery img {
    width: 40%;
    height: auto;
    padding-left: 50px;
}



#wrapper {
    display: grid;
    grid-auto-rows: minmax(0px,auto);
    grid-template-columns: minmax(0px, 1fr) repeat(7, minmax(0, 175px)) minmax(0px, 1fr);
}

#home_main {
    background-image: url(home_main.jpg);
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-area: 3 / 1 / 5 / 10;
}

#contact_us {
    background-color: #F4F3DC;
    grid-area: 4 / 7 / 5 / 9;
    text-align: center;
    margin: 1rem 3rem;
    padding-top: .5rem;
    border-radius: 15px;
}

#contact_us a {
    text-decoration: none;
    color: #A33434;
    text-align: center;
    font-size: 2em;
    
}

.gallery {
    height: 275px;
    margin: 2rem;
}

#home_left {
    background-image: url(home_left.jpg);
    height: 333px;
    background-repeat: no-repeat;
    background-position: left;
    grid-area: 5 / 1 / 6 / 10;
    padding-right: 3em;
}

#home_right {
    background-image: url(home_right.jpg);
    height: 333px;
    background-repeat: no-repeat;
    background-position: right;
    grid-area: 5 / 1 / 6 / 10;
}

main {
    display: block;
    padding: 1em;
    grid-area: 6 / 2 / 7 / 9;
    text-align: center;
    margin: auto;
}

section {
    float: left;
    width: 50%;
    list-style-position: inside;
    text-align: justify;
    grid-area: 6 / 3 / 7 / 8;
    padding: 0rem 4rem;
    
}

#greybar2 {
    background-color: #AAAA8C;
    grid-area: 7 / 1 / 8 / 10;
}

footer {
    font-size: .70em;
    font-style: italic;
    text-align: center;
    color: #F4F3DC;
    padding: 1rem 1rem;
    align-items: center;
    grid-area: 7 / 4 / 8 / 7;
}

footer ul {
    list-style-type: none;
    display: flex;
    flex-flow: row nowrap;
    padding: 1rem 1rem;
    margin: 0;
    justify-content: center;
    justify-content: space-between;
}

footer ul items{
    padding: 1rem;
}

footer a {
    text-decoration: none;
    color: #F4F3DC;
    padding: 0;
    display: block;
    text-align: center;
}

footer a:hover {color: #AAAA8C;}