/* css/imprint_styles.css */

/* Body Styling (moved from style-web.css, updated for light/dark mode) */
body {
    font-family: Roboto, Arial, sans-serif; /* Body text font (from style-web.css) */
    margin: 0;
}

body.light-mode {
    background: #f0f0f0; /* Light background for light mode */
    color: #333; /* Dark text for light mode */
}

body.dark-mode {
    background: #1a1a1a; /* Dark background (from style-web.css) */
    color: #fff; /* White text (from style-web.css) */
}

/* Imprint Page (moved from style-web.css) */
.imprint_general_text_container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    margin-top: 8vh;
}

.imprint_general_text_container h2 {
    font-family: 'Harlow Solid', serif; /* Gaming-inspired font for headings */
    margin-bottom: 15px;
}

.imprint_general_text_container p {
    margin: 0;
    line-height: 1.6;
}

/* Spacer for Imprint Page (not explicitly styled in style-web.css, adding for clarity) */
.imprint_spacer {
    height: 4em; /* 4 lines of spacing as per HTML comment */
}