/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    max-width: 650px;
    margin: 40px auto;
    padding: 0 20px;
    color: #333;
    background-color: #fefefe;
}

h1, h2, h3 {
    line-height: 1.2;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2em;
    margin-top: 2em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.5em;
    margin-top: 1.5em;
    margin-bottom: 0.3em;
}

p, ul, blockquote {
    margin-bottom: 1.5em;
}

ul {
    padding-left: 1.5em;
}

blockquote {
    font-style: italic;
    border-left: 4px solid #ddd;
    padding-left: 1em;
    margin-left: 0;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    margin-right: 15px;
    font-size: 1.2rem;
    color: #555;
}

.social-links a:hover {
    color: #000;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

em {
    font-style: italic;
}
