*{
    margin: 0%;
}

.wrapper{
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
    grid-auto-rows: auto;
    background-color: #D9D9D9;
    
}
nav{
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    background-color: rgba(69, 83, 95, .6);
    text-align: right;
    padding-right: 200px;
    padding-top: 10px;
    padding-bottom: 10px;
    
}
a{
    text-decoration: none;
    color: black;
    padding: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    
}
footer{
    grid-column: 1 / -1;
    grid-row: 7 / 8;
    background-color: rgba(149, 113, 93, .8);
    color: #CFCECF;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    
}
main{
    grid-column: 2 / -2;
    grid-row: 4 / 8;
    background-color: rgba(69, 83, 95, .6);
    height: 900px;
    column-count: 2;
    font-size: 15px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 2;
    column-gap: 40px;
    padding-left: 10px;
    
}
#homehero{
    grid-column: 1 / -1;
    grid-row: 2 / 4;
    background-size: cover;
    background-position: center;
    background-image: url(IMG_5547.jpg);
    height: 450px;
}
header{
    grid-row: 3 / 4;
    grid-column: 1 / -1;
    background-color: rgba(127, 91, 83, 0.8);
    text-align: center;
    font-size: 40px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-stretch: ultra-expanded;
    color: #CFCECF;
    padding-top: 15px;
    padding-bottom: 15px;
}
#picture{
    grid-column: 2 / -2;
    grid-row: 5 / 6;
    background-color: rgba(149, 113, 93, .8);
    height: 320px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

}
hr{
    background-color: rgba(149, 113, 93, .8);
    height: 10px;
}
#toptext{
    grid-row: 4 / 5;
    grid-column: 2 / -2;
    background-color: rgba(69, 83, 95, .6);
    column-count: 2;
    column-gap: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    line-height: 2;
    padding: 15px;
    

}
#bottomtext{
   grid-row: 6 / 7;
   grid-column: 2 / -2;
   background-color: rgba(69, 83, 95, .6);
   column-count: 2;
   column-gap: 40px;
   font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
   font-size: 20px;
   line-height: 2;
   padding: 15px;
}

