/* Import base styles */
@import '../style.css';

body {
    max-width: 800px;
    margin: 0 auto;
    padding: 2em;
    line-height: 1.6;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2c3e50;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    color: #34495e;
    line-height: 1.2;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5em;
    border-bottom: 2px solid #eaecef;
    padding-bottom: 0.3em;
}

p {
    margin: 1em 0;
}

header {
    margin-bottom: 3em;
    text-align: center;
}

.date {
    color: #6c757d;
    font-style: italic;
    margin-top: -0.5em;
}

/* Math styling */
.math {
    overflow-x: auto;
    margin: 1em 0;
}

/* Links */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}