@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans Code", monospace, sans-serif  ;
}

body{
    height: 100vh;
    background-image: linear-gradient(to right, #2ecdfe, #3cff00);
    display: flex;
    align-items: center;
    justify-content: center;
}

.relogio{
        display: flex;
        align-items: center;
        justify-content: space-around;
        height: 200px;
        width: 550px;
        border: transparent;
        border-radius: 20px;
        box-shadow: 0px 7px 8px 8px #00000070;
}

.relogio div {
    height: 170px;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #1d1d1d;
    border-radius: 10px;
    border: transparent;
    box-shadow: 0px 7px 6px #00000086;
}

.relogio span{
     font-weight: bolder;
     font-size: 60px;
}

.relogio span.tempo{
    font-size: 15px;
}