body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Delius", cursive;
    color: rgba(128, 128, 128, 0.977);
    background-color: #efefef7e;
    list-style-type: none;
}

header{
    margin-top: 20px;
    text-align: center;
    margin-bottom: 25px;
}

header h1{
    color: #0e6eaa;
    font-size: 2.5rem;
    margin-bottom: -10px;
}

.btns{
    width: 94%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: -23px;
}

.btns button{
    font-family: "Delius", cursive;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 10px;
    color: rgba(128, 128, 128, 0.977);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease-in;
}

.btns button:hover{
    color: #3396D3;
}

.btns button.active{
    color: #3396D3;
    border-bottom: 5px solid #3396D3;
    border-radius: 5px;
}

hr {
    display: block;
    width: 95%;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    padding: 0;
    margin-bottom: 30px;
}

.localtime, .worldclock{
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.1);
}
.worldclock{
    width: 70%;
}

.localtime{
    padding: 0 50px;
}

.horloge{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: aliceblue;
    position: relative;
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.1);
}

.center{
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: rgb(216, 7, 7);
    z-index: 99;
    position: absolute;
    top: 94px;
    left: 95px;
}

.hournum{
    font-size: 20px;
    font-weight: bold;
    color: black;
    position: absolute;
}

.hour-1{
    top: 15px;
    left: 140px;
}

.hour-2{
    top: 40px;
    left: 170px;
}

.hour-3{
    top: 83px;
    left: 175px;
}

.hour-4{
    top: 125px;
    left: 167px;
}

.hour-5{
    top: 158px;
    left: 140px;
}

.hour-6{
    top: 170px;
    left: 100px;
}

.hour-7{
    top: 163px;
    left: 58px;
}

.hour-8{
    top: 132px;
    left: 22px;
}

.hour-9{
    top: 86px;
    left: 10px;
}

.hour-10{
    top: 46px;
    left: 13px;
}

.hour-11{
    top: 12px;
    left: 45px;
}

.hour-12{
    top: 0px;
    left: 88px;
}

/* minute line */
.minute-hand-wrapper{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 34px;
    z-index: 1;
}

.minute-hand{
    position: relative;
}

.minute-hand .hand{
    width: 4px;
    height: 70px;
    background-color: #2a97da;
    position: absolute;
    left: 65px;
}

.minute-hand .arrow{
    font-size: 30px;
    font-weight: bold;
    color: #2a97da;
    transform: rotate(180deg);
    position: absolute;
    top: -8px;
    left: 58px;
}
/* hourline */
.hour-hand-wrapper{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: absolute;
    top: 32px;
    left: 34px;
    z-index: 2;
}

.hour-hand{
    position: relative;
}

.hour-hand .hand{
    width: 4px;
    height: 51px;
    background-color: #0e6eaa;
    position: absolute;
    left: 65px;
    top: 20px;
}

.hour-hand .arrow{
    font-size: 30px;
    font-weight: bold;
    color: #0e6eaa;
    transform: rotate(180deg);
    position: absolute;
    top: 10px;
    left: 58px;
}
/* secondline */
.second-hand-wrapper{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: absolute;
    top: 32px;
    left: 32px;
}

.second-hand{
    position: relative;
}

.second-hand .hand{
    width: 4px;
    height: 75px;
    background-color: #ff3636;
    position: absolute;
    left: 65px;
    top: -6px;
}

.worldhead, .worldbody{
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.worldhead label{
    position: relative;
    width: 230px;
}

.worldhead label select{
    width: 100%;
    padding: 10px;
    padding-left: 10px;
    border-radius: 8px;
    border: solid rgba(159, 159, 159, 0.619);
    color: rgba(128, 128, 128, 0.977);
}

.worldbody{
    height: 60%;
    overflow-y: scroll;
    scrollbar-color: rgb(189, 189, 189) white;
    scrollbar-width: 5px;
    margin-bottom: 10px;
}

.location{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 10px;
    padding-right: 20px;
    margin-bottom: -10px;
    transition: all 0.5s ease-in-out;
}

.location:hover{
    background-color: #cccccc52;
}

.location h3{
    color: black;
    margin-bottom: -12px;
}

.stopwatch{
    background-color: white;
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    width: 400px;
    margin: 0 auto;
    color: black;
}

.stopwatch button{
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    margin-bottom: 20px;
    cursor: pointer;
    color: aliceblue;
    transition: all 0.3s ease;
}

.start{
    background-color: rgb(3, 146, 3);
}

.pause{
    background-color: rgb(234, 179, 8);
}

.reset{
    background-color: rgb(255, 54, 54);
    margin-left: 20px;
}

#laps{
    background-color: rgb(14, 110, 170);
    width: 90%;
}

.start:hover{
    background-color: rgba(0, 128, 0, 0.7);
}

.pause:hover{
    background-color: rgba(234, 179, 8, 0.7);
}

.reset:hover{
    background-color: rgba(255, 54, 54, 0.7);
}

#laps:hover{
    background-color: rgba(14, 110, 170, 0.7);
}

.laps{
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#lapsDisplay{
    border: 2px solid black;
    width: 85%;
    margin: 0 auto;
    border-radius: 8px;
    height: 120px;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px;
    overflow-y: auto;
    scrollbar-color: rgb(189, 189, 189) white;
    scrollbar-width: 5px;
}

.timer{
    background-color: white;
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    width: 400px;
    margin: 0 auto;
    color: black;
}

.timer button{
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    margin-bottom: 20px;
    cursor: pointer;
    color: aliceblue;
    transition: all 0.3s ease;
}

.presetsbtn button{
    background-color: #9ecfed;
    color: #0e6eaa;
    font-weight: bold;
    width: 25%;
    margin-right: 20px;
}

.presetsbtn button:hover{
    background-color: #67abd5;
}

.circletimer{
    background-color: rgb(203, 203, 203);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circleProgress{
    background-color: rgb(74, 88, 237);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.count{
    background-color: rgb(255, 255, 255);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.time{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.time input{
    width: 60px;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid rgb(194, 194, 194);
}

.presetsbtn{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

















































footer{
    text-align: center;
}