@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.game-container {
    aspect-ratio: 16/9;
    max-height: 80vh;
}

@media (max-width: 768px) {
    .game-container {
        aspect-ratio: 16/9;
        height: 50vh;
    }
}
