* { box-sizing: border-box; margin: 0; padding: 0; }
html {  height: 100%; }
body {
  font: 18px 'Josefin Slab' Serif;
  background: rgba(238,244,248,1);
  height: 100%;
}

a {
    color: white;
  font-weight: bold;
    text-decoration: none;
  }
.container {
    width: 100%;
  height: 100%;
    max-width: 500px;
    margin: 0 auto;
/*     transform: perspective(5600px); */
  -webkit-perspective:5600px;
  perspective:5600px;
}

#carousel {
    width: 50%;
  height: 80%; display: block;
  left: 25%; bottom: 10%;
    position: absolute;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
      -moz-transform-style: preserve-3d;
    transition: -webkit-transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
#carousel figure {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: opacity 1.5s, background-color 0.1s;
}
#carousel figure img {
    width: 90%;
  margin: 5%;
    height: auto;
    box-shadow: 0px 27px 62px 0px rgba(0,0,0,0.5);
  border-radius: 0.2em;
}


.little-text-block {
  width: 80%;
  background-color: rgb(87,123,234);
  margin: 0 auto;
  bottom: 30%;
  left: 10%;
  width: 80%;
  padding: 1em;
  text-align: center;
  font-weight: bold;
  position: absolute;
}
/* 
#carousel figure.main-panel {
  background-color: blue;
}
#carousel figure.background-panel {
  background-color: red;
}
#carousel figure.side-panel {
  background-color: green;
}

#carousel figure.background-panel, #carousel figure.side-panel { opacity: 0 !important; }
#carousel figure.background-panel { opacity: 0 !important; } */

h3 {
  padding: 1em;
  background-color: #3c3c3c;
}
.navigation-control {
  display: block;
  color: red;
  background-color: blue;
}