/* General Body Styles */
body {
    background-color: #1a1a2e; /* Dark blue/purple */
    color: #e0e0e0; /* Light gray for text */
    font-family: 'Fira Code', Consolas, Monaco, monospace; /* Monospace font for code-like feel */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #00e673; /* Slightly less vibrant green for headings */
}

/* Links */
a {
    color: #0096ff; /* Slightly less vibrant blue for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00e673; /* Change to slightly less vibrant green on hover */
}

/* Container/Section Styling (example for a main content area) */
.container {
    background-color: #2a2a4a; /* Slightly lighter dark background for content blocks */
    border: 1px solid #0096ff; /* Slightly less vibrant blue border */
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 960px;
}
