body {
  color: white;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */

}

img {
	max-width: 100vw;
	height: auto;
	max-height:100vh;
	width: auto;
}

.carousel{
  height: 100vh;
  width: 100vw;
  /*max-width: 566px;*/
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: flex-start;
  border-radius: 0px;
  /* background-color: black; */
}
.carousel-inner{
  height: 100%;
  /* min-width: 400%; */
  display: flex;
  transition: all ease .5s;
}
.carousel-item{
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.carousel-item p{
	font-size: 2em;
  opacity: .5;
}
.carousel-controls .prev, .carousel-controls .next{
  display: inline-block;
  height: 42px;
  width: 42px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  opacity: .5;
  }
.carousel-controls .prev{
  left: 12px;
  background-image: url('/images/prev.svg');

}
.carousel-controls .next{
  right: 12px;
  background-image: url('/images/next.svg');
}
.prev:hover, .next:hover{
  opacity: 1;
}
.carousel-indicators{
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.carousel-indicators span{
  display: inline-block;
  background-color: white;
  width: 40px;
  height: 10px;
  border-radius: 2px;
  opacity: .5;
  cursor: pointer;
  margin: 3px;
}
.carousel-indicators span.active{
  opacity: 1;
}