body {
  width: 100vw;
  height: 100%;
  text-align: left;
  /* background: transparent url('http://assets.iceable.com/img/noise-transparent.png'); */
}

.bgImages {
  top: 0;
  left: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -20;
  overflow: hidden;
}
.bgImages img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* mix-blend-mode: exclusion; */
}
#bgO {
    animation: morph 10s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
    opacity: 0.1;
}

section {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1em;
  width: 100vw;
  height: 100vh;
}

section.section-1,
section.section-2 {
  overflow: hidden;
}

section.section-3 {
  justify-content: center;
  align-items: center;
}

/* Asset style and animation */
.morphAsset {
  top: 0;
  left: 0;
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -10;
  animation: morph 2s ease-in-out infinite;
}

.assetStatic {
  top: 0;
  left: 0;
  position: absolute;
  object-fit: fill;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.assetParallaxL,
.assetParallaxR {
  top: 0;
  left: 0;
  position: absolute;
  object-fit: fill;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

footer {
  filter: blur(15px);
  position: relative;
  display: flex;
  bottom: 0;
  justify-content: center;
  align-items: center;
  height: 20vh;
  width: 100vw;
  text-decoration: none;
  overflow: hidden;
}

.footerImg {
  filter: blur(7px);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  justify-content: center;
  object-fit: cover;
  text-decoration: none;
  overflow: hidden;
}
.bottomNavigation {
  position: relative;
  display: flex;
  bottom: 0;
  justify-content: center;
  align-items: center;
  height: 20vh;
  width: 100vw;
}

.menuItem:hover {
  filter: blur(20px);
  height: 14vw;
  width: 14vw;
  transition: 1.5s;
}

.menuItem {
  height: 10vh;
  width: 10vw;
  transition: 1.5s;
  margin: 4vw;
}

.morphAsset:first-child {
  animation-delay: 2s;
}

.morphAsset:last-child {
  animation-delay: 0s;
}

@keyframes morph {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}
@keyframes morphBg {
    0% {
        opacity: 1;
      }
    
      50% {
        opacity: 0.5;
      }
    
      100% {
        opacity: 1;
      } 
}

@keyframes float {
  0% {
    transform: translate(0, 0);
    rotate: -0.5deg;
  }

  25% {
    transform: translate(1px, -6px);
    rotate: 0deg;
  }

  50% {
    transform: translate(-1px, 6px);
    rotate: 0.5deg;
  }

  75% {
    transform: translate(1px, -6px);
  }

  100% {
    transform: translate(0, 0);
    rotate: -0.5deg;
  }
}

/* Responsive setup*/
@media screen and (max-width: 480px) {
  .menuItem {
    height: 10vh;
    width: 30vw;
    margin: 0px;
}

.menuItem:hover {
  height: 10vh;
  width: 30vw;
}

  .bgImages {
    width: 100%;
    height: 100%;
  }

  .assetParallaxL {
    left: 0;
    width: 100vw;
    height: auto;
  }
  .assetParallaxR {
    right: 0;
    width: 100vw;
    height: auto;
  }

  .assetStatic {
    object-fit: cover;
    width: 100%;
    height: 100vh;
  }

  .morphAsset {
    object-fit: cover;
    size: 10%;
    left: 0;
    width: 100vw;
    height: 100vh;
}
  }
