#clock {
    font-size: 15px;
    position: absolute;
    right: 10%;
    top: 85px;
    width: 300px;
    height: 450px;
    animation: muestraReloj 4000ms ease-in-out both;    
}

@keyframes muestraReloj {
    from {opacity: 0;}
    to {opacity: 1;}
}

.card-clock{
    width: 300px;
    height: 450px;
    background-color: #020412;
    /* border: 1px solid #F2F5FA; */
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.wrap {
    overflow: hidden;
    position: relative;
    width: 300px;
    height: 350px;
    border-radius: 100%;
    margin-top: -30px;
}
.minute,
.hour {
    position: absolute;
    height: 90px;
    width: 6px;
    margin: auto;
    top: -27%;
    left: 0;
    bottom: 0;
    right: 0;
    background: #f3f3f3;
    transform-origin: bottom center;
    transform: rotate(0deg);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
    z-index: 1;
} 
.minute {
    position: absolute;
    height: 130px;
    width: 4px;
    top: -38%;
    left: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
    transform: rotate(90deg);
}
.second {
    position: absolute;
    height: 90px;
    width: 2px;
    margin: auto;
    top: -26%;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 4px;
    background: orange;
    transform-origin: bottom center;
    transform: rotate(180deg);
    z-index: 1;
}
.dotClock {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background: #000;
    border: 2px solid #cdcdcd;
    border-radius: 100px;
    margin: auto;
    z-index: 1;
}
.timing{
    text-align: center;
}
.timing span{
    font-size: 60px;
    font-family: 'Raleway', 'Roboto Condensed', sans-serif;
}
.timing p{
    margin-top: 2px;
}

.fecha{
    font-size: 15px;
}

.hora {
    text-align: center;
    font-size: 27px;
}

.hora > p {
    padding: 0;
    margin: 0;
}


@media (max-width: 1200px) {
    #clock {
        display: none;
    }
}