*{
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
}
/* body setup */
body
{
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(155, 191, 211);

    
}
/* clock container setup */

.clock{
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(./files/clock.png);
    background-size: cover;
    border: 4px solid #091921;
    border-radius: 50%;
    box-shadow: 0 -15px 15px  rgba(255,255,255,0.05),
                 inset 0 -15px 15px  rgba(255,255,255,0.05),
                0 15px 15px  rgba(0,0,0,0.3);
}
/* clock midle point setup for units */
.clock:before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #999;
    border-radius: 50%;
    z-index: 1000;
}
/* clock units hand setup */
.clock .hour,
.clock .min,
.clock .sec{
    position: absolute;
}
.clock .hour, .hr{
    width: 160px;
    height: 160px;
}
.clock .min, .mn{
    width: 190px;
    height: 190px;
}
.clock .sec, .sc{
    width: 230px;
    height: 230px;
}

.hr, .mn, .sc{
    display: flex;
    justify-content: center;
    position: absolute;
    border-radius: 50%;

}
.hr:before{
    content: '';
    position: absolute;
    width: 8px;
    height: 80px;
    background: #ff105e;
    z-index: 10;
    border-radius: 6px 6px 0 0;
}
.mn:before{
    content: '';
    position: absolute;
    width: 4px;
    height: 90px;
    background: rgb(99, 15, 173);
    z-index: 11;
    border-radius: 6px 6px 0 0;
}
.sc:before{
    content: '';
    position: absolute;
    width: 2px;
    height: 150px;
    background: rgb(67, 76, 116);
    z-index: 12;
    border-radius: 6px 6px 0 0;
}
/* 
/* setting the next wrapper class for seting alarm */

body, .wrapper, .content{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    
}
h1{
    margin-top: 10px;
    font-size: 35px;
    padding: 1vw;
    font-weight: 400;
    color: aquamarine;
}

.wrapper{
   
    width: 440px; 
    background: #091921;
    border-radius: 10px;
    flex-direction: column;
    padding: 20px 20px 38px;
    

}
.set-alarm-field {
    display: flex;
    justify-content: space-between;
    margin: 15px;
}

.set-alarm-field input {
    width: 30%;
    padding: 12px 20px;
    margin: 5px;
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 5px;
    
}

.buttons {
    display: flex;
    flex-direction: column;
}

.set-alarm {
    background-color: dodgerblue;
    color: #fff;
    border: none;
}

.set-alarm:hover {
    background-color: rgb(9, 119, 84);
}

.clear-alarm {
    background-color: azure;
    border: 1px solid black;
}

.clear-alarm:hover {
    background-color: rgb(85, 115, 135);
    text-transform: uppercase;
    color: white;
}

.buttons button {
    width: 100%;
    height: 50px;
    margin: 5px;
    border-radius: 5px;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
}
h3{
    margin-top: 0;
    font-size: 20px;
    text-align: right;
    font-weight: 200;
    text-decoration: underline;
    text-decoration-thickness: 0px;
    color: rgb(155, 191, 211);
}
/* Styling the upcoming alarm List */
#Next-alarms{
    margin-top: 20px;
    width: 100%;
}
#Next-alarms {
    margin-top: 20px;
    width: 100%;
}

#Next-alarms-list {
    list-style: none;
    width: 400px;
}

#Next-alarms-list li {
    margin: 5px 0;
    width: 100%;
    background: #fff;
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    display: block;
    border-radius: 3px;
    transition: 0.5s linear;
}
/* Delete button style setup */
.time-list button {
    position: absolute;
    top: -1;
    right: 0;
    width: 50px;
    height: 40px;
    font-weight: 300;
    text-align: center;
    border: none;
    background: #e00;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: -2px -1px 19px #091921;
}
