* {
  box-sizing: border-box;
}
.column {
  display: inline-block;
  border: 2px solid black;
  margin: 12px 8px 12px 8px;
}
.column:hover {
  transform: scale(1.05, 1.05);
  transition: 0.3s ease;
}
.cursor {
  cursor: pointer;
}
.mySlides {
  border: 2px solid black;
  box-shadow: 0px 0px 120px #111414;
}
/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 4;
  padding-top: 200px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#212627+0,111314+100&0.36+0,0.65+48,1+100 */
  background: -moz-radial-gradient(center, ellipse cover, rgba(33,38,39,0.36) 20%, rgba(25,29,30,0.65) 48%, rgba(17,19,20,1) 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(33,38,39,0.36) 20%,rgba(25,29,30,0.65) 48%,rgba(17,19,20,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgba(33,38,39,0.36) 20%,rgba(25,29,30,0.65) 48%,rgba(17,19,20,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c212627', endColorstr='#111314',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 3000px;
}
/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 30px;
  font-weight: bold;
  padding: 0px 12px 0px 12px;
  background-color: #536a7f;
  transition: 0.2s ease;
}
.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  background-color: #df2e12;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 22px;
  transition: 0.2s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: #536a7f;
  -webkit-user-select: none;
}
/* Position the "prev button" to the left */
.prev {
  left: -40px;
}
/* Position the "next button" to the right */
.next {
  right: -40px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: #df2e12;
}
