/* Global box-sizing to prevent padding/border issues */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

/* Default body styling */
body {
    --accent: #bf616a;
    --link-decoration: none;
    --background-light: #DCCFC6;
    --text-light: #2e3440;
    --border-light: #eceff4;
    --border-radius: 12px;
    --image-border-width: 12px;
    --padding: 5px;
    --gap: 10px;

    margin: 0;
    font-family: "Noto Serif". "Helvetica Neue", Arial, sans-serif;
    background: var(--background-light);
    color: var(--text-light);
    padding-bottom: 50px;
}

/* Dark theme variables */
@media (prefers-color-scheme: light) {
    body {
        --background-light: #2e3440; /* Darker background */
        --text-light: #eceff4; /* Lighter text */
        --border-light: #4c566a; /* Darker border */
    }
}

h1 {
    font-weight: 400;
    margin: 10px 0 20px;
    text-align: center;
    color: var(--text-light); /* Text color based on theme */
}
