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

*{
    margin: 0;
    padding: 0;
    font-family: Cabin, sans-serif;
}

body{
    height: 100vh;
    background: linear-gradient(120deg, #4b4d63, #787CA0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

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

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

.relogio div:hover{
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
}

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

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

.botao {
    margin-top: 8%;
}

.relogio-analogico {
    padding: 12px;
    width: 25vh;
    background-color: black;
    color: white;
    border: 2px solid #677eff;
    border-radius: 5px;
}

.relogio-2 {
    display: inline-block;
    background-color: aliceblue;
    width: 500px;
    height: 500px;
    border-radius: 50%;
}

.numero {
    background-color: rgba(255, 0, 0, 0.418);
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 50vh; */

}