* { 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 1fr;
    justify-content: center;
}

.IntroDiv p {
    padding: .5em .5em .5em 1.5em;
}

.IntroImg {
    text-align: right;
}

article h2 {
    font-family: Righteous, sans-serif;
    text-align: center;
}

article p {
    font-family: Dosis, sans-serif;
    text-align: left;
    padding: .5em .5em .5em .5em;
}

@media screen and (max-width: 768px) {
    .IntroDiv {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
    }
}