:root {
    --background-color: #f0f0f0;
    --text-color: #333;
    --number-bg-color: #eee;
}

body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    text-align: center;
}

#theme-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    background: none;
    border: 1px solid;
    cursor: pointer;
}

button {
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
}

.numbers-container {
    display: flex;
    margin-top: 20px;
}

.number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--number-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    font-size: 1.5rem;
    font-weight: bold;
}