* { box-sizing: border-box; }

body { font-family: sans-serif; }

.carousel {
  background: #FAFAFA;
}

.carousel-cell {
  width: 66%;
  height: 200px;
  margin-right: 10px;
  background: #8C8;
  border-radius: 5px;
  counter-increment: carousel-cell;
}

/* cell number */
.carousel-cell:before {
  display: block;
  text-align: center;
  content: counter(carousel-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
}

.carousel-cell--height2 { height: 300px; }
.carousel-cell--height3 { height: 400px; }


#Intro h1 {
    font-family: Righteous, sans-serif;
    text-align: center;

}

.IntroDiv {
    display: grid;
    grid-template-columns: 1fr ;
    justify-content: center;
}

.IntroDiv p {
    padding: .5em .5em .5em 1.5em;
}

.IntroImg {
    text-align: center;
}

article h2 {
    font-family: Righteous, sans-serif;
    text-align: center;
}

article h3 {
    font-family: Righteous, sans-serif;
    text-align: center;
    font-size: medium;
}

article p {
    font-family: Dosis, sans-serif;
    text-align: left;
    padding: .5em .5em .5em .5em;
}

.VertDivGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    grid-gap: 1em;
    padding: .5em .5em .5em .5em;
}

#VertGrid {
    padding: .5em .5em .5em .5em;
    height: 71vh;
}

#VertGrid a:hover img {
    filter: none;
    transition: all 0.3s ease 0s; 
    box-shadow: 0px 0px 50px #D75F40;
}

.VertDivGrid2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr ;
    justify-content: center;
    grid-gap: 1em;
    padding: .5em .5em .5em .5em;
}

#VertGrid2 {
    padding: .5em .5em .5em .5em;
    height: 50vh;
    display: grid;
    justify-content: center;
}

#VertGrid2 a:hover img {
    filter: none;
    transition: all 0.3s ease 0s; 
    box-shadow: 0px 0px 50px #D75F40;
}

@media screen and (max-width: 768px) {
    .IntroDiv {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
    }

    #VertGrid {
        padding: .5em .5em .5em .5em;
        height: 191vh;
    }

    .VertDivGrid {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        grid-gap: 1em;
        padding: .5em .5em .5em .5em;
    }

    #VertGrid2 {
        padding: .5em .5em .5em .5em;
        height: 191vh;
        display: grid;
        justify-content: center;
    }

    .VertDivGrid2 {
        display: grid;
        grid-template-columns: 1fr  ;
        justify-content: center;
        grid-gap: 1em;
        padding: .5em .5em .5em .5em;
    }
}