/**
 * LEIBER Poland Quiz - Base Styles
 *
 * Reset and common element styles shared across all pages
 *
 * Note: Google Fonts must be loaded in HTML <head> before this stylesheet:
 * <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">
 */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base body styles */
body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--leiber-dark) 0%, #1a1a1a 100%);
    min-height: 100vh;
}
