
#wrapper{
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
    grid-template-rows: repeat(11, 150px);
}
header{
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    text-align: center;
    margin-top: 0px;
}
#whitebar{
    grid-column: 1 / -1;
    background-color: rgb(255, 255, 255, .5);
    grid-row: 1 / 2;
}
nav{
    grid-column: 4 / -2;
    grid-row: 1 / 2;
}
nav ul{
    padding: 0px;
    display: flex;
    flex-flow: row nowrap;
    list-style-type: none;
}
nav ul li{
    width: 100%;
    text-align: center;
    margin: 40px;
}
nav ul li a{
    text-decoration: none;
    color: black;
    font-size: 25px;
    vertical-align: middle;
}
h1{
    color: #AB692F;
    font-size: 40px;
}

#heroimage{
    grid-column: 1 / -1;
    background-image: url(homehero.jpg);
    height: 800px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 1 / 4;
    z-index: -1;
}
#background{
    grid-row: 6 / -1;
    grid-column: 1 / -1;
    background-color: #E1D1C3;
}
main{
    grid-row: 5 / 7;
    grid-column: 2 / -2;
    background-color: rgb(255, 255, 255);
    height: 1050px;
}
main img{
    object-fit:cover;
    margin: 35px;
}
footer{
    grid-column: -1 / 1;
    height: 75px;
    background-color: #716E6E;
    grid-row:  -1;
    text-align: center;
    vertical-align: middle;
}
.row {
    display: flex;
}
  
.column {
    flex: 50%;
    padding: 10px;
}
main h2{
    text-align: center;
    margin: 35px;
}
main p{
    text-align: center;
    margin: 35px;
}
footer a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.534);
}