body{
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    width: 250px;
    height: 100px;
    background-color: aqua;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px 10px 10px 10px;
    border-color:2px solid blueviolet;
    box-shadow: -2px 2px 3px blueviolet;
}
.head-title {
    background-color: blueviolet;
    width: 100%;
    height: 30px;
    padding-top:0px ;
    display: flex;
    color: white;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;

}
.main-div{
    height: 100vh;
    display: flex;
    align-items: center;
}
.time-elements{
    font-weight: bold;
    font-size: 26px;
    text-align: center;
    display: flex;
    gap: 7px;
    align-items: baseline;
    justify-content: center;
    text-align: center;
}
.colon{
    font-size: 22px;
}