/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: default;
}

.centered-text {
    text-align: center;
}

.centered-text h1 {
    color: black;
    font-size: 3rem;
    font-weight: normal;
    transition: color 0.3s ease;
}

/* Dark theme styles */
body.dark-theme {
    background-color: black;
}

body.dark-theme .centered-text h1 {
    color: white;
}