/* General styles */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialised;
}

body {
  margin-top: 5em;
  font: 20px/1.5 "Helvetica", Arial, sans-serif;
}

.container {
  position: relative;
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 80%;
  left: 10%;
}

.slide {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
}

.slide.animated {
  -webkit-transition: left 0.3s ease-in;
  transition: left 0.3s ease-in;
}

blockquote {
  color: #636363;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5em;
}

cite {
  font-size: 0.75em;
  font-weight: 700;
  font-style: normal;
}

/* Utility */
.simple-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Nav */
#prev,
#next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999999;
  display: inline-block;
  height: 5em;
  width: 5em;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#prev {
  background-image: url("arrow-left-out.svg");
}

#prev:hover {
  background-image: url("arrow-left-over.svg");
}

#next {
  right: 0;
  background-image: url("arrow-right-out.svg");
}

#next:hover {
  background-image: url("arrow-right-over.svg");
}
