.play__container {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
}

.play__topBar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;

    z-index: 10;
}

.play__lanes {
    position: relative;

    width: 100%;
    height: 100%;

    max-width: 40rem;

    display: flex;
}

.play__gameOver {
    position: absolute;
    z-index: 5;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.play__playLane {
    flex-grow: 1;
    border-left: 2px solid var(--playLane-separator);
}

.play__playLane + .play__playLane {
    border-right: 2px solid var(--playLane-separator);
}
