body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f4f8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.timer-container {
    background: white;
    padding: 2rem;
    border-radius: 50%; /* Makes it egg-like */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#display {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

input {
    width: 60px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 8px 15px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #ff6b6b;
    color: white;
}

button:hover {
    background-color: #ee5253;
}
