@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    background: #FFFFFF;
}

.clock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    font-family: 'Poppins', sans-serif;
}

.heading {
    color: #090909;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
}

.time {
    background: #FFFFFF;
    color: #090909;
    font-size: 100px;
    width: 150px;
    margin: 0 10px;
    text-align: center;
}