@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(120deg, #ffe53bd8, #ff2525da);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.relogio {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 200px;
    width: 550px;
    background: transparent;
    border-radius: 10px;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.3);
}

.relogio div {
    height: 170px;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #fff;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, .3);
    border-radius: 7px;
    letter-spacing: 3px;
}

.relogio span {
    font-weight: bolder;
    font-size: 60px;
}

.relogio span.tempo {
    font-size: 15px;
}

#rodape {
    color: #000000;
    font-weight: 400;
    
}

#rodape p {
    font-family: 'Open Sans', sans-serif;
}

@media screen and (max-width: 786px){

body {
    padding-top: 50px;
}

.relogio {
    flex-direction: column;
    gap: 15px;
    box-shadow: none;
    margin-bottom: 100px;
}

.relogio div {
    padding: 10px;
}

#rodape{
    margin-top: 100px;
    background-color: transparent;
    box-shadow: none;
    text-align: center;
    font-size: 14px;
}
}