body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #00a8ff, #8e44ad);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #f1c40f;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.stopwatch-container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.stopwatch {
    font-size: 36px;
    margin-bottom: 20px;
}

.controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    background-color: #2c3e50;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: blue;
}
button:active {
    background-color: #b93a29;
}
.stopButton {
    background-color: #27ae60;
}



.lap-times {
    list-style-type: none;
    padding: 0;
    text-align: left;
    max-height: 200px;
    overflow-y: auto;
}

.lap-times li {
    margin-bottom: 5px;
}

