*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(45deg, rgb(9, 222, 66), rgb(53, 50, 230) );
    }
.relogio{
    width: 350px;
    height: 150px;
    background-color: rgba(43, 43, 59, 0.8);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
    box-shadow: 5px 5px rgba(0,0,0,0.5);
}

#horas, #minutos, #segundos{
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    background-color: black;
    width: 90px;
    height: 110px;
    color: white;
    border-radius: 5px;

}
#horas div{
    font-size: 30px;
   margin-bottom: 6px;
}
#horas span{
    font-size: 15px;
}
#minutos div{
    font-size: 30px;
    margin-bottom: 6px;
}
#minutos span{
    font-size: 15px;
}
#segundos div{
    font-size: 30px;
    margin-bottom: 6px;
}
#segundos span{
    font-size: 15px;
}

