/* Default light mode */
body {
    background-color: white;
    color: black;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease-in-out;
}

/* dark mode */
.dark-mode {
    background-color: #121212;
    color: white;
}

/* Button styling */
button {
    background-color:black ;
    color: white;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    padding: 20px 30px;
    border: none;
    border-radius: 7px;
    transition:background-color 0.3s, color 0.3s;
    cursor: pointer;
}

/* dark mode button */
body.dark-mode button {
    background-color: white;
    color: black;
}