body {
	background-color: rgb(255, 240, 245);
	color: rgb(72, 72, 72);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	
}


/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}


/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.aside-2 {
	position: relative;
	left: 400px;
	
}

@media all and (min-width: 600px) {
    .aside {
        flex: 1;
    }
}

@media all and (min-width: 800px) {

    .aside-1 {
        order: 1;
    }

    .aside-2 {
        order: 2;
    }

    footer {
        order: 3;
    }
}

.translate {
    transform: translate(50px, -20px);
}

.rotate {
    transform-origin: top left;
    transform: rotate(-10deg);
}

.rotate2 {
    transform-origin: top left;
    transform: rotate(+10deg);
}


.style{
	
	width: 300px;
	height: 700px;
	display: -webkit-flex; /* Safari */
	display: flex;
    flex-direction: row;
    text-align: center;
}

.style > * {
    padding: 5px;
	-webkit-flex: 1;  /* Safari 6.1+ */
	-ms-flex: 1;  /* IE 10 */  
	flex: 1;
}

p {
    border: 2px solid navy;
    background-color: whitesmoke;
	box-shadow: 3px 3px 10px midnightblue;
	text-align: center;
    width: 200px;
    padding: 5px;
    margin: 5px;
}

footer {
    background-color: #757575;
	text-align: center;
	font-family: "Fira Sans";
	color: white;
}