/* ===== BASIC COLORS ===== */
:root {
    --bg-color: #0a0101;       /* background */
    --text-color: #f9d2cf;        /* main text */
    --accent-color: #af5f57;   /* links & highlights */
    --header-font: 'Trebuchet MS', sans-serif;
    --body-font: 'Verdana', sans-serif;
}

/* ===== PAGE ===== */
body {
    background: var(--bg-color);
    color: #edb4b4;
    font-family: "Georgia", serif;
    margin: 40px auto;
    max-width: 800px;
    padding: 20px;
    line-height: 1.6;
}

/* ===== HEADERS ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: "Lucida Console";
    color: #fc5555;
    margin-bottom: 5px;
}

/* ===== LINKS ===== */
a {
    color: #fc0707;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ===== IMAGES ===== */
img {
    max-width: 100%;
    border-radius: 6px;
}

/* ===== BLOG ENTRY LIST ===== */
ul {
    padding-left: 20px;
}
li {
    margin-bottom: 6px;
}

/* ===== TABLE ===== */
table {
    border-collapse: collapse;
    margin-top: 20px;
}
td {
    border: 1px solid #ccc;
    padding: 8px 15px;
}
