body{
    background-image: -webkit-image-set();
    background-color: rgb(61, 12, 1);
    color: whitesmoke;
    margin: 0px;
}


/* styleing container*/
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*header part*/
.header{
    width: 100%;
    height: 65px;
    background-color: rgb(1, 34, 34);
    text-align: center;
}

/*time*/
#current-time{
    font-size: 70px;
    margin-top: 20px;
}
/* user input styleing*/
.user-input{
    text-align: center;
}
.user-input input{
    height: 25px;
    width: auto;
    text-align: center;
    font-size: 20px;
    border-radius: 6px;
    margin-left: 10px;
}
/*Button styling*/
.user-input button{
    height: 32px;
    width: 30%;
    text-align: center;
    font-size: 20px;
    border-radius: 6px;
    background-color: rgb(61, 12, 1);
    color: whitesmoke;
    margin-left: 20px;
    margin-bottom: 20px;
}

hr{
    width:50%;
}

.set-alarms-list li{
    list-style: none;
}

/*Alarm list styling*/
.time-list{
    width: 300px;
    height: 35px;
    background-color: rgb(57, 79,73);
    font-size: 25px;
    border-radius: 3px;
    display:flex;
    justify-content: space-between;
    align-items: center;   
}
.time-list span{
    margin-left: 10px;
}
.time-list button{
    height: 32px;
    width: 30%;
    text-align: center;
    font-size: 20px;
    border-radius: 6px;
    background-color: rgb(61, 12,1);
    color: whitesmoke;
}