@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

/* For long form text inside .prose */
.prose h1,
.prose h2,
.prose h3 {
    margin: 1.5em 0 0.5em;
}

.dark {
    color-scheme: dark;
}

button#theme {
    background: none;
    cursor: pointer;
}
