/* General */

.big-heading {
  font-family: "Montserrat";
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

/* Activity one */

#slideshow {
  margin: 40px auto;
  position: relative;
  width: 865px;
  height: 495px;
  padding: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

#slideshow > div {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  text-align: center;
}

#slideshow img {
  width: 845px;
  height: 475px;
}

#slideshow .portrait-image {
  width: auto;
  max-width: 317px;
}

#play-pause {
    position: absolute;
    bottom: 1em;
    left: 2em;
}

#play-pause .glyphicon {
  font-size: 5em;
  color:#46506d;
  margin-bottom: 0.6em;
  margin-left: 0.2em;
}

/* Activity two */

.dropZone {
  background-color: #c3c7d2;
  border-radius: 4px;
  margin-bottom: 1em;
  min-height: 380px;
  padding: 1em;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}

.draggable, .dropZone .draggable {
  cursor: move;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  z-index: 2;
}

.draggable img {
  height: 100%;
  max-height: 300px;
}

.dropZone .draggable {
  margin-bottom: 10px;
  display: inline-block;
  flex: 1 0 30%;
  padding: 5px;
}

.dropZone .draggable img {
  max-height: 110px;
  max-width: 165px;
  margin-left: auto;
  margin-right: auto;
}
.dropZone .draggable:last-child {
  margin-bottom: 0;
}

#statementStack {
  text-align: center;
}

/* Small Devices, Tablets */
@media only screen and (max-width : 992px) {
  #slideshow {
    margin: 5px auto;
    position: relative;
    width: 100%;
    height: 480px;
    padding: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  }

  #slideshow > div {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
  }

  #slideshow img {
    width: 100%;
    height: auto;
  }

  #play-pause .glyphicon {
    font-size: 3em;
    color: #46506d;
  }
}

@media (max-width: 1024px){
  .draggable img {
    max-height: 300px;
  }
}




