*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
.container{
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
body{
    background-image: url('https://images.rawpixel.com/image_800/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L3NrOTc5MS1pbWFnZS1rd3Z1amE5Ni5qcGc.jpg');
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.outer-circle{
    width: 260px;
    height: 260px;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(213, 8, 8, 1);
}

.animation-bg{
    background: linear-gradient(-45deg, #ee7752, orange, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 7s ease infinite;
}

@keyframes gradient{
    0%{
        background-position: 0 50%;
        }
        50%{
            background-position: 100% 50%;
            }
            100%{
                background-position: 0 50%;
            }
}
.inner-circle{
    width: 270px;
    height: 230px;
    border-radius: 50%;
    background: transparent;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0,0,0,0)

}

.text{
    font-size: 23px;
    color: #fff;
}

.minute{
    font-size: 43px;
}

.sec{
    font-size: 34px;
}
.msec{
    font-size: 23px;
}

.button-wrapper{
    display: flex;
    justify-content: space-between;
    width: 250px;
    margin-top: 30px;
}
.button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: rgb(86, 90, 154);
    color: black;
    cursor: pointer;
}
.button:hover{
    background-color: #fda79e;
    color:black;
}

.laps{
    list-style: none;
    color:white;
    width: 250px;
    height: 250px;
    overflow: auto;
    position: relative;
    margin-top: 30px;
}

.laps::-webkit-scrollbar{
    display: none;
}
.lap-item{
    display: inline-block;
    width: 100%;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 15px;
}
.number{
    font-size: 20px;
    color: #fff;
}
.time-stamp{
    display: inline-block;
    margin-left: 25px;
}

.lap-clear-button{
    display: block;
    position: fixed;
    z-index: 1000;
    bottom: 35px;
    left: 50%;
    transform: translate(-50%);
    width: 130px;
    padding: 10px 0;
    border-radius: 50px;
    background-color: rgba(255,255,255,0.9);
    border: 1px solid white;
    cursor: pointer;
}
.hidden{
    visibility: hidden;
}