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;
  }
  
  .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: 0s;
  transition-timing-function: cubic-bezier(20, -0.9, 3, 10);
}

.morphAsset:last-child {
  animation-delay: 1s;
}

@keyframes morph {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

/* 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 {
    width: 100vw;
    height: auto;
    left: 0;
    object-fit: fill;
    bottom: 0;
  }

  .assetParallaxR {
    left: none;
    right: 0;
    width: 100vw;
    height: auto;
    object-fit: fill;
    bottom: 0;
  }

  .assetStatic {
    object-fit: fill;
    width: 100vw;
    height: 50vh;
  }

  .morphAsset {
    object-fit: cover;
    width: auto;
  }
}
