* {
    box-sizing: border-box;
}

#wrapper {
    display: grid;
    grid-auto-rows: minmax(50px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr)
}

#backcolor{
    grid-row: 8 / 26;
    grid-column: 2 / -2;
    background-color: rgba(155, 155, 155, 0.44);
    z-index: -4;
}

body {
    background-color: rgba(220, 216, 216, 0.744);
    font-family: Verdana;
    background-attachment: fixed;
    margin: 0px;
    z-index: -5;
}

header {
    grid-row: 1 / 2;
    grid-column: 2 / -2;
    color: #FF8A00;
    z-index: 1;
    text-align: center;
    background-position: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
header a {
    text-decoration: none;
    color: #FF8A00;
}
header h1{
    padding: .5rem;
    background-position: right;
    background-repeat: no-repeat;
    background-origin: content-box;
    margin:0;       
}
#headerbar{
    grid-row: 1 / 2;
    grid-column: 1 / 9;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

nav{
    grid-row: 2/3;
    grid-column: 3 / -2;
    z-index: 1;
    font-weight: bold;
    top: 0;
    width: auto;
}
nav ul{
    margin: 0px;
    padding: 0px;
    display: flex;
    list-style-type: none;
}
nav ul li{
    width: 100%;
}
nav a { 
    text-decoration: none;
    color: rgba(255, 255, 255, .87);
    padding: 1rem 0rem;
    display: flex;
    text-align: center;
 }
nav a:active{
    color: #ffffffcd;
}
#navbar{
    grid-row: 2/3;
    grid-column: 1 / -1;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#hero {
    grid-row: 1 / 8;
    grid-column: 1 / -1;
    background-image: url("pics/adobe2.jpg");
    z-index: -2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
}
   
#services {
    grid-row: 8;
    grid-column: 1 / 9;
    background:rgba(255, 255, 255);
    font-weight: bold;
    color: #5A514F;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}


#commericalImage {
    grid-row: 9 / 14;
    grid-column: 2 / 6;
    background-image: url("pics/lassonde-2.jpg");
    background-repeat: no-repeat;
    background-position: 40% 90%;
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
#commericalContent {
    grid-row: 14 / 9;
    grid-column: 5 / 8;
    background: #707070;
    margin: 2rem 2rem 2rem 0rem;
    color: white;
}
#commericalContent h2{
    margin: 10px;
    font-weight: bold;
}
#commericalContent h4{
    color: #CBCBCB;
    font-weight:100;
    margin: 10px 10px 10px 30px;
}


#residentialImage {
    grid-row: 20 / 14;
    grid-column: 4 / -2;
    background-image: url("pics/wolf_creek-1.jpg");
    background-repeat: no-repeat;
    background-position: 0% 30%;
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
#residentialContent {
    grid-row: 20 / 14;
    grid-column: 2 / 5;
    background: #707070;
    margin: 2rem 2rem 2rem 2rem;
    color: white;
}
#residentialContent h2{
    margin: 10px;
    font-weight: bold;
}
#residentialContent h4{
    color: #CBCBCB;
    font-weight:100;
    margin: 10px 10px 10px 30px;
}


#contact{
    grid-row: 20 / 25;
    grid-column: 5 / -2;
    background: white;
    float: left;
    margin-bottom: 1rem;
}
#contback{
    grid-row: 20 / 25;
    grid-column: 1 / -1;
    background: white;
    z-index: -3;
}
#contact h2{
    font-weight: bold;
    color: #483c39;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#footerimg{
    grid-row: 20 / 25;
    grid-column: 5 / 1;
    padding: 4rem;
    margin-left: 7rem;
    background: white;
    display: flex;
    align-items: center;
    height: 300px;
    width: auto;
    background-size: cover;
    background-repeat: no-repeat;
}

form {
    margin-top: 2rem;
    margin-right: 1rem;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 200px 1fr;
    gap: 0.75rem;
    width: 100%;
}
form input, form textarea {
  font-size: 1rem;
  padding: 10px;
  
  background-color: #ffffff;

}
#mySubmit {
    width: 10rem;
    grid-column: 2;
    text-align: center;
    color: #707070;
}
#myComments {
    grid-column: 2 / -1;
}


