/* Page content */
.content {
    width: 100vw;
    height: 100dvh;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
	background-color: black;
	opacity: 0;
}
.aisle {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 100%;
    flex: 0 0 auto;
}
.milk {
    height: 100%;
}
.person {
    position: absolute;
    left: 50%;
    bottom: -10%;
    transform: translate(-50%);
    height: 80%;
}