/* styles.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f8fa;
    color: rgb(218, 119, 137);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    
}

.container {
    text-align: center;
    max-width: 400px;
    background: rgb(247, 215, 215);
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2rem;
    margin-bottom: 1em;
}

.timer {
    font-size: 3rem;
    margin-bottom: 1em;
}

.timer span {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #f58686;
    border-radius: 5px;
    margin-bottom: 10px;
}

input:active, input:focus {
    border: 2px solid rgb(218, 119, 137);
    outline: none;
}

button {
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: pink;
    color: white;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: rgb(218, 119, 137);
}
