div#line {
  margin-bottom: 3%;
}

article:last-of-type .body p:first-child {
  font-style: italic;
  text-align: center;
}
#carousel {
  user-select: none;
}
#slides * {
  display: none;
  animation-name: fade;
  animation-duration: 0.6s;
}
@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}
div#controls {
  text-align: center;
}
#controls * {
  display: inline-block;
  background-color: #bbb;
  transition: background-color 0.4s ease;
  cursor: pointer;
}
#controls a {
  font-size: 18px;
  font-weight: bold;
  color: white;
  padding: 0 8px;
  margin: 0 3px;
  border-radius: 3px;
}
#controls span {
  height: 10px;
  width: 10px;
  margin: 0 3px;
  border-radius: 50%;
}
#controls .active, #controls *:hover {
  background-color: #717171;
}
@media only screen and (min-width : 768px) {
 
}
@media only screen and (max-width : 639px) {

}