body
{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    min-height:100vh; 
    transition:  200ms cubic-bezier(.41,.76,.99,.63);

}


.hora
{
    font-size:40px;
    font-weight: 100;
    font-family: sans-serif;
    margin-bottom: 5px;
}

.blanco
{
    border: none;
    background-color:black;
    color: white;
    border-radius:5px;
    padding:5px;
}

.negro
{
    border: none;
    background-color:white;
    color: black;
    border-radius:5px;
    padding:5px;
}


.reloj
{
    display: flex;
    margin: 200px;
}

.punto
{
    padding: 2px;
    height: 2px;
    border: 2px solid red;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 2px;
    z-index: 3;
    margin: auto;
    width: 3px;
    -webkit-transform-origin: bottom;
}

.segundos
{
    position: absolute;
    height: 160px;
    width: 2px;
    left: 0; right: 0; bottom: 160px; top: 0px;
    margin: auto;
    -webkit-transform-origin: bottom;
    background: red;
    z-index: 2;

    

 }




 .minutos
{
   
    position: absolute;
    height: 160px;
    width: 2px;
    left: 1px; right: 0; bottom: 160px; top: 0px;
    margin: auto;
    background: #000;
    -webkit-transform-origin: bottom;

 } 

 .horas
 {
   
    position: absolute;
    height: 80px;
    width: 2px;
    left: 0; right: 0; bottom: 80px; top: 0px;
    margin: auto;
    background: #000;
    -webkit-transform-origin: bottom;

 } 


.fecha
{
    font-size:15px;
    color: rgb(167, 156, 156);
}

 .num
 {
    background:black;
    border-radius: 3rem;
    padding:2px;
 }

 