body {
  width: 100vw;
  height: 100%;
  /* Font color and alignment */
  text-align: left;
  color: black;
  text-decoration: none;

}

.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.61, 0.355, 1) infinite;
  opacity: 0.1;
}

section {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow: none;
}

section.section-1,
section.section-2 {
  overflow: hidden;
}

section.section-3 {
  align-items: center;
  justify-content: center;
  color: black;
  padding: 1em;
}


/* Asset style and animation */
.morphAsset {
  overflow: hidden;
  top: 0;
  left: 0;
  position: absolute;
  object-fit: fill;
  width: 100%;
  height: 100%;
  z-index: -10;
  animation: morph 0.7s ease-in-out infinite;
}

.assetStatic {
  top: 0;
  left: 0;
  position: absolute;
  object-fit: fill;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.assetParallaxL,
.assetParallaxR {
  overflow: hidden;
  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;
  z-index: 10;
}

.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: 3s;
}

.morphAsset:last-child {
  animation-delay: 0s;
}
@keyframes brighten {
  0% {
    filter: brightness(0);
    filter: blur(8px);
  }

  50% {
    filter: brightness(1);
    filter: blur(20px);
  }

  100% {
    filter: brightness(0);
    filter: blur(8px);


  }
}

@keyframes morph {
  0% {
    opacity: 1;
  }

  75% {
    opacity: 0.6;
  }

  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;
  }
    .assetParallaxR {
      left:none;
      right: 0;
      width: 100vw;
      height: auto;
      object-fit: fill;
  
    }
    .assetStatic {
      object-fit: cover;
      width: auto;
      height: 100vh;
    }
  
    .morphAsset {
      object-fit: cover;
      width: auto;
      height: 100vh;
    }
  }


