*{
    margin:0;
    padding:0;
}
body{
      background-color: black;
    color:white;
    margin:0;
    padding:0;
 
}
body::-webkit-scrollbar {
    display: none;
  
}

.box{
    height: 100vh;
    width: 100vw;
  
    display:flex;
}

.left{
    height: 100vh;
    width:20vw;
    position:relative;
  
}
.clockntime{
    font-size:30px;
    margin-left: 10px;
    margin-top:10px;
}
.leftlist{
    padding:0;
    display:flex;
    gap:15px;
    list-style: none;
    margin: 20px 10px;
    flex-direction: column;
}
.leftlist li{
    display:flex;
    cursor: pointer;
    align-items: center;
    gap:12px;
}

.right{
    height:100vh;
    width:100vw;
    background-color:#1f1f1f;
    overflow-y: scroll;
}
.right::-webkit-scrollbar {
  display: none;         
}
.right .Alarm{
    font-size: 30px;
    margin:20px 20px;
   
}
.alarmlist{
    list-style: none;
    display : flex;
    flex-direction: column;
    gap:20px;
   
}
.alarmlist li{
      display:flex;
      margin-left: 10px;
      margin-right: 20px;
      border-radius: 10px;
      background-color: black;
      align-items: center;
      height: 50px;
}

.addicon{
    position:absolute;
   display:flex;
   font-size: 30px;
    height: 34px;
    width: 32px;
    right:30px;
    bottom:60px;
    cursor:pointer;
    align-items: center;
    justify-content: center;
    background-color: blue;
    border-radius: 50%;
}

.setwindow{
    border-radius:20px;
    height: 30vh;
    width: 30vw;
    justify-content: space-evenly;
    position: absolute;
    right:30%;
    background-color: black;
    display:none;
}
.setwindow.newsetwindow{
     display:block;
}
.stop{
     border-radius:20px;
    height: 10vh;
    width: 100px;
    display:flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right:35%;
    background: blue;
}
.stopbox{
    display:none;
}
.stopbtn{
    height: 40px;
    width: 80px;
    border-radius: 20px;
    cursor:pointer;
}
#timeform{
      display:flex;
      flex-direction: column;
      margin-left: 15px;
      flex-wrap: wrap;
      gap:30px;
}
.setbtn{
    background-color: blue;
    font-size: 18px;
    border-radius: 20px;
}



@media (max-width:550px){
    .box{
        flex-direction: column-reverse;
    }
    .left{
        height: 10vh;
        width:100vw;
        display: flex;
    }
  
     .leftlist li p{
        display:none;
    }
   .leftlist {
    display: flex;
    width:100%;
    flex-direction: row;
    justify-content: space-evenly;
    list-style: none;
    padding: 0;
    margin: 0;
}

   .setwindow{
    height: 100vh;
    width: 100vw;
    right:0;
   }
   .stop{
    height: 10vh;
    width: 100px;
   }



    .right{
        width:100vw;
    }
    .clockntime{
        display: none;
    }
}