* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background: linear-gradient(90deg, rgba(122,122,122,1) 0%, rgba(82,82,82,1) 50%, rgba(94,46,42,1) 100%);
}

.clock {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    color: white;
    background-color: rgba(177, 177, 177, 0.1);
    padding: 40px;
    border-radius: 30px;
}

.time {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.time-number {
    font-size: 180px;
}

.time-text {
    font-size: 25px;
}

.colon {
    font-size: 150px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 950px) {
    .clock {transform: scale(0.8);}
}

@media only screen and (max-width: 800px) {
    .clock {transform: scale(0.6);}
}

@media only screen and (max-width: 600px) {
    .clock {transform: scale(0.4);}
}

@media only screen and (max-width: 400px) {
    .clock {transform: scale(0.37);}
}