body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

#timer-container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

#logo {
    width: 100px;
    margin-bottom: 20px;
}

#display, #earnings, #daily-earnings, #weekly-earnings, #monthly-earnings, #total-earnings {
    font-size: 1.5em;
    margin: 10px 0;
}

button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
}

#reset-total-btn {
    background-color: red;
    color: white;
}

