/* Basic styling for the static site */
body {
    font-family: system-ui, sans-serif;
    margin: 2rem;
    background-color: #f9f9f9;
    color: #333;
}

h1 {
    color: #0055aa;
}

button {
    padding: 0.5rem 1rem;
    background-color: #0077cc;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 1rem;
}

button:hover {
    background-color: #005fa3;
}