/* styles.css */

:root {
    --bg-color: #121212; /* Dark background */
    --text-color: #f0f0f0; /* Light text */
    --accent-color: #4CAF50; /* Green accent */
    --card-bg: #1e1e1e; /* Card background */
    --font-family: "Courier New", monospace; /* Monospace font */
}

section ul {
    list-style-type: disc; /* Keep bullet points for lists in getting started */
    padding-left: 20px; /* Indent list items */
}

section ul li {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline; /* Add underline on hover */
}