html{
    margin: 10px;
    background-color: rgb(195, 243, 227);
}

body{
    padding:0;
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1vw;
    height: 100%;
}

h1 {
    margin: 0px;
    margin-bottom: 10px;
    text-align: center;
}

.HeadingGrid{
    width: 100%;
}
.HeadingGrid ul{
    height: 100px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #66815a;
}

.HeadingGrid li {
    float: left;
    width: calc(100% / 5)
}

.HeadingGrid li a{

    text-decoration: none;
    display: block;
    color: rgb(255, 255, 255);
    text-align: center;
    height: 100px;
    line-height: 100px;
}


.HeadingGrid li a:hover {
    background-color:#102e02;
  }

.HeadingGrid{
  height: 100px;
  display: grid;
  grid-template-columns: 100px auto;
}

.HomeGrid{
    gap: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 50px;
}

.HomeGrid img{
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.HomeGrid h2{
    text-align: center;
}



.ActivityPageGrid{
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.ActivityPageGrid li{
    font-size: 1.5em;
    font-weight: bold;

}

.ActivityImageGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ActivityImageGrid img{
    aspect-ratio: 3/2;
    width: 100%;
}

.ActivityImageGrid h2{
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    line-height: 1;
    display: block;
}

.ActivityINDVImageGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ActivityINDVImageGrid img{
    aspect-ratio: 3/2;
    width: 100%;
}

.ActivityPageText h1, .ActivityPageText h2{
    text-align: center;
}

.ShopGrid{
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.ShopGrid h2{
    margin: 0;
}

.ShopGrid li{
    font-size: 1.5em;
    font-weight: bold;

}

.ShopImageGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ShopImageGrid img{
    width: 100%;
}

.DirectionsGrid{
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.DirectionsGridLeft img{
    width: 100%;
}

.DirectionsGridLeft h2{
    margin: 0px;
}

.DirectionsGridLeft h3{
    margin: 0px;
}

.DirectionsGridRight h2{
    margin: 0px;
}

.AboutUsGrid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.AboutUsGrid img{
    width: 100%;
}

.AboutUsGrid h2{
    margin: 0px;
}

.logo{
    height: 100px;
}

.MainContent{
    height: 100%;
}

.BigLogo{
    display: block;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    height: 200px
}

