body {
    background-color: hsl(206, 100%, 88%);
    display: flex;
    align-items: center;
    flex-direction: column;
}
.h1{
    color: hsl(206, 100%, 25%);
    padding-top: 2rem;
    font-size: 50px;
    font-family: "Arial", sans-serif;
}


#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

#display {
    font-size: 5rem;
    font-family: monospace;
    font-weight: bold;
    color: hsl(0, 0%, 15%);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
    margin-bottom: 25px;
}

#controls button {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px;
    margin: 5px;
    min-width: 125px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: hsl(0, 0%, 100%);
}

#controls button:hover {
    color: slategray;
}

#start_btn {
    background-color: lightgreen;
}

#start_btn:hover {
    background-color: hsl(115, 100%, 60%);
}

#stop_btn {
    background-color: lightcoral;
}

#stop_btn:hover {
    background-color: hsl(0, 100%, 60%);
}

#restart_btn {
    background-color: lightblue;
}

#restart_btn:hover {
    background-color: hsl(200, 100%, 60%);
}

#lap_btn {
    background-color: rgb(227, 230, 173);
}

#lap_btn:hover {
    background-color: hsl(72, 100%, 60%);
}

#resetlap_btn {
    background-color: rgb(230, 173, 221);
}

#resetlap_btn:hover {
    background-color: hsl(314, 100%, 66%);
}

#laps-container {
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 200px;
    overflow-y: auto;
}

#laps {
    list-style-type: none;
    padding: 0;
}

#laps li {
    text-align: center;
    font-size: 1.5rem;
    font-family: monospace;
    background-color: hsl(0, 0%, 95%);
    margin: 5px 0;
    padding: 5px 10px;
    border-radius: 10px;
}