body {
  max-width: 100%;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

img {
  width: 110%;
  -webkit-filter: blur(3px) brightness(75%);
  -moz-filter: blur(3px) brightness(75%);
  -o-filter: blur(3px) brightness(75%);
  -ms-filter: blur(3px) brightness(75%);
  filter: blur(3px) brightness(75%);
}

.parallax-container {
  height: 250px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background-color: #272727;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #4D4D4D;
}

blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

.preloader {
  background: #272727;
  display: inline;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
