
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1e1e1e;
    color: #ddd;
}

header {
    background-color: #2a2a2a;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
}

.site-title {
    font-size: 4rem;
    font-weight: bold;
    color: #ffd54f; /* Bright yellow for a tech feel */
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.navigation {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumbs {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #8ab4f8;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

main {
    padding: 2rem;
    background-color: #252525;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

footer {
    background-color: #2a2a2a;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

a {
    color: #8ab4f8;
}

a:hover {
    color: #a0c3ff;
}