@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'PT Sans', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(120deg, #ad94bb, #3b0453);
    display: flex;
    justify-content: center;
    align-items: center;
}

.relogio {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 200px;
    width: 550px;
    background: transparent;
    border-radius: 3px;
    box-shadow: 0px 8px 10px rgb(54, 4, 52);
}

.relogio div {
    height: 170px;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, .9);
    box-shadow: 5px 5px 15px rgb(54, 4, 52);
    border: 0.8px solid rgb(155, 31, 149);
    border-radius: 7px;
    letter-spacing: 3px;
}

.relogio span {
    font-size: 65px;
}

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