.game {
    width: 100%;
}

.layout {
    grid-template-columns: 60% 38%;
    justify-content: space-between;
    gap: 0;
}

.scene-wrap {
    height: 100%;
    aspect-ratio: auto;
}

.panel:first-child {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .game {
        width: 100%;
    }

    .layout {
        grid-template-columns: 55% 40%;
    }

    .scene-wrap {
        height: 100%;
    }
}
