body {
    margin: auto;
    width: 100vw;
    height: 100%;
    overflow-y: hidden;
    /* 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;
    color: black;

}


section.section-1,
section.section-2 {
    overflow: hidden;
}

section.section-3 {
    align-items: center;
    justify-content: center;
}


/* Asset style and animation */
.morphAsset {
    top: 0;
    left: 0;
    position: absolute;
    object-fit: fill;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: morph 5s ease-in-out infinite;

}

.assetStatic {
    top: 0;
    left: 0;
    position: absolute;
    object-fit: fill;
    width: 100%;
    height: 100%;
    z-index: -1;

}

.assetParallaxL,
.assetParallaxR {
    top: 0;
    left: 0;
    position: absolute;
    object-fit: fill;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.8;
    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 {
    transition: transform 0.3s ease-out;
    animation-delay: 2s;
}

.morphAsset:last-child {
    animation-delay: 0s;
}


@keyframes morph {
    0% {
        opacity: 1;
    }

    75% {
        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,
    .assetParallaxR {
        size: 5%;
        object-fit: cover;
        width: 100%;

    }

    .assetStatic {
        object-fit: cover;
        width: auto;
        height: 100vh;
    }

    .morphAsset {
        size: 10%;
        object-fit: cover;
        width: auto;
        height: 100vh;
    }
}