/* GENERALITIES */
* {
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.clickable {
  cursor: pointer;
}
body {
  font-family: sans-serif;
  background: black;
}
/* FOOTER */
footer {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  font-size: 12px;
  pointer-events: none;
  text-align: right;
  z-index: 99999;
}
footer a {
  font-style: italic;
  color: #ff0025;
}
footer a:hover {
  color: #b3001a;
}
footer span {
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px 5px;
  display: inline-block;
  color: #fff;
}
footer .likea {
  font-weight: normal;
  text-decoration: underline;
  opacity: 0.8;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
}
/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 5;
}
.lightbox.active {
  display: block;
}
.lightbox .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(77, 0, 15, 0.75);
}
.lightbox .box {
  margin: 0 auto;
  height: 100vh;
  width: -webkit-fit-content;
  width: fit-content;
  width: -moz-fit-content;
  max-width: 95%;
}
.lightbox .content {
  padding-top: 45px;
  padding-bottom: 35px;
  overflow: hidden;
  text-align: center;
  width: -webkit-fit-content;
  width: fit-content;
  width: -moz-fit-content;
  margin: 25px auto;
  margin-top: 50px;
  padding: 25px;
  background-color: #fff;
}
.lightbox p {
  color: #4d000f;
}
.lightbox h1,
.lightbox h2,
.lightbox h3 {
  color: #4d000f;
}
.lightbox .close {
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 999;
  display: block;
  width: 30px;
  height: 30px;
  color: #4d000f;
  text-align: center;
  line-height: 18px;
  font-size: 30px;
  cursor: pointer;
  -webkit-transition: all 1000ms cubic-bezier(0.065, 0.58, 0, 0.995);
  transition: all 1000ms cubic-bezier(0.065, 0.58, 0, 0.995);
}
/* ERROR PAGE */
.error_page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-transform: uppercase;
  mix-blend-mode: overlay;
  font-size: 2.5em;
  text-align: center;
}
h1 span {
  font-size: 0.5em;
  display: block;
}
.spiral {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: 10000ms spirale infinite linear;
          animation: 10000ms spirale infinite linear;
  opacity: 0.7;
}
.fourOfour {
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #808080;
  z-index: -1;
}
.fourOfour span {
  font-size: 150px;
  display: inline;
  -webkit-animation: 2500ms colors infinite linear;
          animation: 2500ms colors infinite linear;
}
.fourOfour span:first-child {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}
.fourOfour span:last-child {
  -webkit-animation-delay: 1200ms;
          animation-delay: 1200ms;
}
@-webkit-keyframes spirale {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
    -webkit-filter: blur(1px) contrast(0.75) brightness(2.5) sepia(1) hue-rotate(0deg) saturate(10) invert(0);
            filter: blur(1px) contrast(0.75) brightness(2.5) sepia(1) hue-rotate(0deg) saturate(10) invert(0);
  }
  50% {
    -webkit-filter: blur(1px) contrast(0.5) brightness(1.5) sepia(1) hue-rotate(180deg) saturate(10) invert(1);
            filter: blur(1px) contrast(0.5) brightness(1.5) sepia(1) hue-rotate(180deg) saturate(10) invert(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
    -webkit-filter: blur(1px) contrast(0.75) brightness(2.5) sepia(1) hue-rotate(360deg) saturate(10) invert(0);
            filter: blur(1px) contrast(0.75) brightness(2.5) sepia(1) hue-rotate(360deg) saturate(10) invert(0);
  }
}
@keyframes spirale {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
    -webkit-filter: blur(1px) contrast(0.75) brightness(2.5) sepia(1) hue-rotate(0deg) saturate(10) invert(0);
            filter: blur(1px) contrast(0.75) brightness(2.5) sepia(1) hue-rotate(0deg) saturate(10) invert(0);
  }
  50% {
    -webkit-filter: blur(1px) contrast(0.5) brightness(1.5) sepia(1) hue-rotate(180deg) saturate(10) invert(1);
            filter: blur(1px) contrast(0.5) brightness(1.5) sepia(1) hue-rotate(180deg) saturate(10) invert(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
    -webkit-filter: blur(1px) contrast(0.75) brightness(2.5) sepia(1) hue-rotate(360deg) saturate(10) invert(0);
            filter: blur(1px) contrast(0.75) brightness(2.5) sepia(1) hue-rotate(360deg) saturate(10) invert(0);
  }
}
@-webkit-keyframes colors {
  0% {
    -webkit-filter: sepia(1) contrast(0.75) saturate(10) brightness(1) hue-rotate(0deg);
            filter: sepia(1) contrast(0.75) saturate(10) brightness(1) hue-rotate(0deg);
  }
  50% {
    -webkit-filter: sepia(1) contrast(0.5) saturate(10) brightness(0.5) hue-rotate(360deg);
            filter: sepia(1) contrast(0.5) saturate(10) brightness(0.5) hue-rotate(360deg);
  }
  100% {
    -webkit-filter: sepia(1) contrast(0.75) saturate(10) brightness(1) hue-rotate(360deg);
            filter: sepia(1) contrast(0.75) saturate(10) brightness(1) hue-rotate(360deg);
  }
}
@keyframes colors {
  0% {
    -webkit-filter: sepia(1) contrast(0.75) saturate(10) brightness(1) hue-rotate(0deg);
            filter: sepia(1) contrast(0.75) saturate(10) brightness(1) hue-rotate(0deg);
  }
  50% {
    -webkit-filter: sepia(1) contrast(0.5) saturate(10) brightness(0.5) hue-rotate(360deg);
            filter: sepia(1) contrast(0.5) saturate(10) brightness(0.5) hue-rotate(360deg);
  }
  100% {
    -webkit-filter: sepia(1) contrast(0.75) saturate(10) brightness(1) hue-rotate(360deg);
            filter: sepia(1) contrast(0.75) saturate(10) brightness(1) hue-rotate(360deg);
  }
}
