﻿@import '../common.scss';

GameRules {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    
    .control-wrap {
        background-color: $menu-highlight;
        padding: 12px;
        border-radius: 16px;
        justify-content: center;
    }
    
    .rules-title {
        font-size: 48px;
        margin-bottom: 8px;
    }
    
    .rules-container {
        position: absolute;
        flex-direction: column;
        width: 1400px;
        height: 600px;
        padding: 24px 32px;
        border-radius: 16px;
        background-color: $menu-bg;
        box-shadow: -8px 8px $menu-highlight;
        gap: 12px;
    }
}