@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&family=Poppins:wght@100;300;400;500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;    
}

body{
    height: 100vh;
    background: #201f3a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1{
    font-family: 'Amatic SC', cursive;
    color: #fff;
    margin: 30px 0; 
    font-size: 50px;
}

.relogio{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 400px;
    border-radius: 10%;
    border: 5px double #fff;
    transition: 0.5 all;
}

.relogio:hover{
    background: rgba(235, 235, 235, 0.10);
    cursor: pointer;
    box-shadow: 0 0 70px #fff;
}

.relogio div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 0 10px;
}

.relogio span{
    font-size: 45px;
    font-weight: bolder;
}

.relogio p{
    font-size: 18px;
}

.assinatura{
    color: #fff;
    margin: 30px 0;
}

@media screen and (max-width:430px){
    .relogio{
        width: 320px;
        height: 320px;
    }
}