/*
body {
    margin: 0;
    overflow: hidden;

    position: absolute;
    width: 100%;
}
*/


.door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100vh;
    background-color: #e8d7e7;
    animation: openDoor1 1.5s ease-in-out forwards !important;
    /*animation: openDoor1 2s linear forwards !important;*/
    z-index: 10000000;
}

.left {
    left: 0;
    animation-delay: 0s;
}

.right {
    right: 0;
    animation-delay: 0s;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    color: #333;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes openDoor {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(-90deg);
    }
}

@keyframes openDoor1 {
    0% {
	    width:50%;
    }

    100% {
	    width:0;
    }
}



@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



#creature-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

#creature {
    font-size: .2vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150em;
    height: 150em;
    flex-wrap: wrap;
}

#creature div {
    transform-style: preserve-3d;
    position: relative;
    width: 4em;
    height: 4em;
    margin: 3em;
    border-radius: 2em;
    will-change: transform;
    mix-blend-mode: plus-lighter;
    /*mix-blend-mode: screen;*/
    /*mix-blend-mode: lighten;*/
    background: var(--red);
}
