/**
 * Mixins
 */
/**
 * Variables
 */
/**
 * Animations
 */
@-webkit-keyframes shiftBorderColor {
  0% {
    border-color: #e0f7fa;
  }
  33.3333% {
    border-color: #f1f8e9;
  }
  66.6666% {
    border-color: #eceff1;
  }
}
@keyframes shiftBorderColor {
  0% {
    border-color: #e0f7fa;
  }
  33.3333% {
    border-color: #f1f8e9;
  }
  66.6666% {
    border-color: #eceff1;
  }
}
@-webkit-keyframes shiftTextColor {
  0% {
    color: #e0f7fa;
  }
  33.3333% {
    color: #f1f8e9;
  }
  66.6666% {
    color: #eceff1;
  }
}
@keyframes shiftTextColor {
  0% {
    color: #e0f7fa;
  }
  33.3333% {
    color: #f1f8e9;
  }
  66.6666% {
    color: #eceff1;
  }
}
@-webkit-keyframes shiftBackgroundColor {
  0% {
    background: #e0f7fa;
  }
  33.3333% {
    background: #f1f8e9;
  }
  66.6666% {
    background: #eceff1;
  }
}
@keyframes shiftBackgroundColor {
  0% {
    background: #e0f7fa;
  }
  33.3333% {
    background: #f1f8e9;
  }
  66.6666% {
    background: #eceff1;
  }
}
/**
 * Base
 */
*,
*:after,
*:before {
  box-sizing: border-box;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

/**
 * Gallery
 */
.gallery {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery__body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}


.gallery {
  background-color: #e0f7fa;
  -webkit-animation: shiftBackgroundColor 10s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
          animation: shiftBackgroundColor 10s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

