body.light {
    background-color: white;
    color: black;
    transition: background-color 0.3s, color 0.3s;
}

body.dark {
    background-color: #121212;
    color: white;
}

h1 {
    font-family: Arial, sans-serif;
}