*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    background-color: #FED8B1;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

h1 {
    font-size: 36px;
    color: #51b87f;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}


.outerCircle{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgb(184, 17, 17);
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time{
    color:aliceblue;
    font-size: 40px;
}

.buttons{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgb(184, 17, 17);
    background-color: black;
    color: white;
    cursor: pointer;
    
}

.button:hover{
    background-color: white;
    color: black;
}

.lap-items{
    display: inline-block;
    width: 250px;
    padding: 15px;
    
}

.laps{
    height: 200px;
    width: 300px;
    padding: 0;
    font-size: 18px;
    overflow: auto;
    list-style: none;
    margin-top: 10px;
    margin-bottom: 10px;   
}