body{
    background: rgb(11, 196, 110);
    background: linear-gradient(80deg, rgba(6, 216, 205, 0.768) 0%, rgba(221, 5, 52, 0.488) 50%);
    text-align: center;
    height: 100vh;
    padding: 50px;
}

h1{
    text-decoration: underline;
    
}
h3{
    font-family: cursive;
    font-size: 40px;
}
#container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid black;
    border-radius:20px ;
    margin: auto 10rem;
    min-height: 80vh;
    padding-top: 2px;
}
.header{
    width: 100%;
    height:65px;
    background-color: rgb(125,11,200);
    text-align:center;
}
#current-time{
    font-size: 55px;
    margin-top: 20px;
}
#setAlarm{
    display: flex;
    gap: 30px;
    justify-content: center;
}
#setAlarm>input{
    background: rgb(8, 238, 226);
background: linear-gradient(80deg, rgba(6, 226, 61, 0.768) 0%, rgba(8, 180, 211, 0.488) 34%);
    font-weight: 400;
    font-size: 2rem;
    font-family: fantasy;
    border: .5px solid black;
    border-radius:20px ;
}
#setAlarm>button{
    background: rgb(12, 214, 120);
background: linear-gradient(80deg, rgba(6, 228, 209, 0.768) 0%, rgba(7, 150, 233, 0.488) 34%);
    font-weight: 400;
    font-size: 2rem;
    border: .5px solid black;
    font-family: fantasy;
    border-radius:10px ;
}
.alrm-container{
   
    display: flex;
    align-items: center;
    gap: 20px;
}
.alrmCont{
    display: flex;
    flex-direction: column;
    align-self: center;
    padding: 0 2rem;
    gap: 10px;
   
}

.popup{
    background: rgb(5, 245, 213);
    background: linear-gradient(80deg, rgba(5, 210, 224, 0.768) 0%, rgba(2, 240, 220, 0.488) 34%);
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: rgb(243, 7, 7);
    padding: 20vw;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    
}

.off{
    visibility: hidden;
}
.stop{
    padding: 20px 30px;
    border: 1px solid rgb(4, 245, 96);
    border-radius:20px ;
}
