/* styles.css */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #1c1c1c;
    /* ljusare mörkgrå för bakgrund */
    color: #f5f5f5;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

header,
footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #0f0f0f;
    /* mörkaste gråsvart på toppen & botten */
    border-bottom: 1px solid #2a2a2a;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h1 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #ffffff;
}

h2,
h3 {
    color: #e0e0e0;
    font-weight: 500;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 0.5rem 0;
}

a {
    color: #00e0ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
    color: #7af0ff;
}

.highlight {
    background-color: #2b2b2b;
    border-left: 4px solid #00e0ff;
    padding: 1.2rem 1rem;
    margin-top: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

footer {
    font-size: 0.9rem;
    border-top: 1px solid #2a2a2a;
    margin-top: 3rem;
}

/* Optional: better text highlight */
::selection {
    background: #00e0ff;
    color: #000;
}