* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none !important;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.toast {
    backface-visibility: visible;
    position: relative;
    transform-style: preserve-3d;
    transition: .5s transform;
    cursor: pointer;
    user-select: none;
}

.toast.toast--flipped {
    transform: rotateY(180deg);
}

.toast__peanut,
.toast__jelly {
    background-color: white;
    transform-origin: 50% 50%;
    width: 50vw;
    max-height: 50vh;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
}

.toast__peanut {
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    left: 0;
}