body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #f4f4f4; /* Plain background color */
    background-image: none; /* Remove any background image */
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    margin-top: 100px;
}

.timer {
    font-size: 48px;
    margin: 20px 0;
}

.controls button {
    font-size: 16px;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#start {
    background-color: #4CAF50;
    color: white;
}

#pause {
    background-color: #FFC107;
    color: white;
}

#reset {
    background-color: #F44336;
    color: white;
}

.quote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    font-family: 'Dancing Script', cursive;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}