body {
    height: 98vh;
    background-image: url('/aula04/imgs/background-do-body.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgb(0, 0, 52);
    display: flex;
    align-items: center;
    justify-content: center;
}

.relogio {
    width: 500px;
    background-color: rgba(255, 255, 255, 0.101);
    color: rgb(0, 0, 0);
    border-radius: 50px;
    border-style: groove;
    border-color: black;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.5;
}

.relogio div{
    background-color: rgba(134, 1, 205, 0.279);
    color: rgb(9, 9, 9);
    height: 150px;
    width: 150px;
    border-radius: 20px;
    border-style: groove;
    border-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.relogio span{
    font-size: 80px;
    font-family: Arial, Helvetica, sans-serif;
}
