* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: sans-serif;
  margin: 0;
  background: #222;
}

.carousel {
  height: 100vh;
  max-height: 100vh;
}

.carousel .flickity-viewport {
  height: 100vh !important;
  max-height: 100vh;
}

.carousel .flickity-prev-next-button {
  width: calc(min(15vw, 100px));
  height: calc(min(15vw, 100px));
}

.carousel .carousel-cell {
  width: 100%;
  /* full width */
  height: 100%;
  background: #222;
  /* center images in cells with flexbox */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.carousel .carousel-cell .caption, .carousel .carousel-cell .timestamp {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-size: calc(min(5vw, 2em));
  z-index: 2;
  position: absolute;
  background-color: #ffffff9e;
  height: auto;
  width: auto;
  padding: 10px;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.carousel .carousel-cell .timestamp {
  max-width: 450px;
}

.carousel .carousel-cell .caption {
  max-width: calc(min(50vw, 450px));
}

.carousel .carousel-cell .carousel-cell-image {
  display: block;
  max-height: 100%;
  margin: 0 auto;
  max-width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  /* fade in lazy loaded image */
}

.carousel .carousel-cell .carousel-cell-image.flickity-lazyloaded, .carousel .carousel-cell .carousel-cell-image.flickity-lazyerror {
  opacity: 1;
}

#about {
  z-index: 4;
  width: clamp(30px, 10vh, 7em);
  height: clamp(30px, 10vh, 7em);
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 0;
  border: none;
  background: none;
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(129deg) brightness(102%) contrast(104%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(129deg) brightness(102%) contrast(104%);
  opacity: 50%;
  -webkit-transition: opacity 0.175s linear;
  transition: opacity 0.175s linear;
}

#about:hover {
  opacity: 1;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 6;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  top: 0;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: calc(90% - 10vw);
  height: auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 2em;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
          animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}

@-webkit-keyframes animatetop {
  from {
    top: -50%;
    opacity: 0;
  }
  to {
    top: 0%;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -50%;
    opacity: 0;
  }
  to {
    top: 0%;
    opacity: 1;
  }
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 1em;
  font-weight: bold;
  height: auto;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  height: auto;
}

.modal-header {
  text-align: center;
  padding: 50px;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  font-size: 2em;
  background-color: red;
  color: white;
  height: auto;
}

.modal-header h2 {
  margin: 0;
  font-size: 0.5em;
}

.modal-header span {
  position: absolute;
  top: 25px;
  right: 50px;
}

.modal-body {
  text-align: center;
  padding: 50px;
  height: auto;
  width: auto;
}

.modal-body p {
  margin: 0;
  font-size: 0.8em;
}
/*# sourceMappingURL=styles.css.map */