* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: radial-gradient(circle,rgba(105, 105, 105, 1) 0%, rgba(38, 38, 38, 1) 100%);
    
}

.clock-box {
    width: 400px;
    height: 200px;
    border-radius: 10px;
    margin: 10px;
}

h1 {
    background: #23074d;   
    background: -webkit-linear-gradient(to right, #cc5333, #23074d);  
    background: linear-gradient(to right, #cc5333, #23074d); 
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 70px;
}

.clock-box h3 {
    background: linear-gradient(90deg, rgba(52, 157, 199, 1) 29%, rgba(237, 83, 237, 1) 100%);
    text-align: center;
    /* background-size: 200%; */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 30px 10px;
    font-size: 70px;
}