.about {
  width: 70%;
  margin: auto;
  margin-top: 0;
  margin-bottom: 80px;
}

@media only screen and (hover: none) and (pointer: coarse),
screen and (max-width: 700px) {

  .about {
    width: 100%;
  }

  .about-text {
    width: 95%;
  }

}

.about-text {
  text-align: center;
  margin: auto;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.5;
}

@media only screen and (hover: none) and (pointer: coarse) {

  .about-text p {
    font-size: 2rem;
  }

}

.about-text a {
  color: #25aae1;
  font-weight: 400;
  text-decoration: none;
}

.about-text a:hover {
  text-decoration: underline;
}

.about h1 {
  font-weight: 100;
  font-size: 5rem;
  margin-bottom: 2rem;
}

.about-picture {
  margin-top: 2vh;
  margin-bottom: 2vh;
  text-align: center;
}

.about-picture img {
  max-height: 50vh;
  object-fit: cover;
  object-position: top center;
  width: 100%;
  max-width: 800px;
}

.hwrap {
  width: 100%;
  margin-top: 2em;
  overflow: hidden;
  text-align: center;
  font-size: 1.2rem;
}


.hmove {
  display: flex;
  position: relative;
  top: 0;
  right: 0;
}

/* (C) SLIDES - FORCE INTO ONE LONG HORIZONTAL ROW */
.hslide {
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 10px;
}

.hslide span {
  font-family: Arial, sans-serif;
  color: #e2e2e2;
  font-weight: bold;
  font-size: 68px;
  line-height: 54px;
}


@keyframes slideh {

  /* (D0) THE IDEA - USE KEYFRAMES TO SHIFT SLIDES *
    0% { right: 0; }
    33% { right: 100%; }
    66% { right: 200%; }
    100% { right: 0; }
   
    /* (D1) BUT THE ABOVE WILL SHIFT NON-STOP */
  /* SO WE ADD PAUSES BETWEEN EACH SLIDE */
  0% {
    right: 0;
  }

  23% {
    right: 0;
  }

  25% {
    right: 100%;
  }

  48% {
    right: 100%;
  }

  50% {
    right: 200%;
  }

  73% {
    right: 200%;
  }

  75% {
    right: 300%;
  }

  97% {
    right: 300%;
  }

  100% {
    right: 0;
  }
}

.hmove {
  animation: slideh linear 15s infinite;
}

.hmove:hover {
  animation-play-state: paused;
}

.quote-author {
  font-size: 0.8rem;
  font-weight: bold;
  color: #25aae1;
}

.quote-author span {
  color: #999;
  font-size: 0.8rem;
}

@media only screen and (hover: none) and (pointer: coarse) {

  .quote-author {
    margin-top: 1rem;
  }

}