*{
    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: center;
    display: flex;
    flex-flow: row-reverse;
    grid-column: 2 / -2;

}
nav a:hover{
    background-color: rgba(149, 113, 93, .8);
}
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: 8 / 9;
    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);
    font-size: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 1.75;
    padding: 15px
    
}
#homehero{
    grid-column: 1 / -1;
    grid-row: 2 / 4;
    background-size: cover;
    background-position: center;
    background-image: url(images/IMG_5547.jpg);
    height: 450px;
}
#DateHero{
    grid-column: 1 / -1;
    grid-row: 2 / 4;
    background-size: cover;
    background-position: center;
    background-image: url(images/Screenshot\ 2024-04-18\ at\ 12.56.33\ PM.png);
    height: 450px;
}
#TreeHero{
    grid-column: 1 / -1;
    grid-row: 2 / 4;
    background-size: cover;
    background-position: center;
    background-image: url(images/Screenshot\ 2024-04-15\ at\ 7.30.36\ PM.png);
    height: 500px
}
#NewsHero{
    grid-column: 1 / -1;
    grid-row: 2 / 4;
    background-size: cover;
    background-position: center;
    background-image: url(images/IMG_5547.jpg);
    height: 450px;
}
#homepagepic{
    padding: 10px;
    border-style: solid;
    border-color: #7F5B53;
    border-width: 10px;
}
#ClickTree a:hover{
    background-color: rgba(127, 91, 83, 0.8);

}
#TopText{
    column-count: 2;
    column-gap: 1.5rem;
}
#BottomText{
    column-count: 2;
    column-gap: 1.5rem;
}
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;
}
tr{
    display: table-row;
    vertical-align: inherit;
}
tbody{
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}
table{
    margin: 0 auto;
    border: 1px solid #424242;
    width: 70%;
    border-collapse: collapse;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;

}
td, tr{
    padding: 5px;
    border: 2px solid #424242;
}
tr:nth-of-type(even){
    background-color: rgba(66, 66, 66, 3);
}
.text{
    text-align: center;
    font-weight: bold;
}
img{
    padding: 15px;
}

#ClickTree{
    display: none;
}
h2{
    text-align: center;
}
p{
    padding-top: 10px;
}
hr{
    height: 3px;
}

@media only screen and (max-width: 992px)
{
    .wrapper{
        grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 128px)) minmax(0px, 1fr);
    }
    #ClickTree{
        display: inline;
    }
    #TreeHero{
        display: none;
    }
}
@media only screen and (max-width: 768px)
{
    .wrapper{
        grid-column: 100%;
    }
    img{
        float: none;
        height: auto;
        object-fit: contain;
        width: 100%;
    }
}