:root {

    /* GLOBAL SETTINGS */
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);

    /* COLORS PILL*/
    --background-pill: rgba(251, 188, 5, 0.15);
    --border-pill: 1px solid rgba(251, 188, 5, 0.4);
    --color-pill: #fbbc05;

    /* COLORS GAME HEADLINE */

    /* COLORS SUBLINE */


}

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

.card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 40px 48px;
    max-width: 480px;
}