/* This file contains styles that apply to all pages */

/* Box Sizing Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Body Styles */
body {
    background: linear-gradient(to bottom, #9FB8CC 0%, #DAE4F0 30%, #ffffff 50%, #DAE4F0 70%, #9FB8CC 100%);
    font-family: var(--font-family-body);
    text-align: center;
}

/* Global Heading Styles */
h1, h2, h3 {
    color: var(--text-color);
    text-align: center;
}

/* Global Module Styles (from modules.css) */
.module {
    margin: var(--margin-medium) auto;
    padding: var(--padding-large);
    max-width: 1200px;
    box-shadow: var(--shadow-large);
    background-color: var(--light-bg-color);
    border-radius: 15px;
    border: 1px solid #7B8899;
}