/*
Theme Name: Ronald's Philosophy
Author: [Your Name]
Description: A custom theme for Ronald de Groote's philosophy, built on minimalism and readability.
Version: 1.0
*/

/* --- Main Body and Typography --- */
body {
    background-color: #FFFFE0; /* Light Yellow */
    color: #00008B; /* Dark Blue */
    font-family: Georgia, serif;
    line-height: 1.7;
    padding: 2% 5%; /* Add some space around the content */
}

/* --- Headings --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #000055; /* A slightly different blue for contrast */
}

/* --- Links --- */
a {
    color: #0000CD; /* Medium Blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Content Layout --- */
.site-content {
    max-width: 800px; /* Makes long texts easier to read */
    margin: 0 auto; /* Centers the content block */
}