html {
    background: #00000000;
}

body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.clock {
    transform: scale(1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 200px;
    background: #000000e1;
    border-radius: 100%;
    border: solid #2a2a2ae1 2px;
    transition: transform 1s ease-in-out;
    transition: transform 1s cubic-bezier(1, 0, 0, 1);
}


.clc {
    position: relative;
    background: white;
    border-radius: 30px;
    transform-origin: bottom;
    z-index: 100;
}

.seconds {
    height: 100px;
    width: 1px;
    bottom: 100px;
    right: 0.5px;
}

.minutes {
    height: 80px;
    width: 2px;
    bottom: 80px;
    right: 1px;
}

.hours {
    height: 60px;
    width: 4px;
    bottom: 60px;
    right: 2px;
}

.circle {
    height: 10px;
    width: 10px;
    bottom: 5px;
    right: 5px;
}

.short {
    height: 10px;
    width: 1px;
    bottom: 100px;
    right: 0.5px;
}

.long {
    height: 15px;
    width: 2px;
    bottom: 100px;
    right: 1px;
}

.num {
    height: 30px;
    width: 30px;
    bottom: 130px;
    right: 15px;
    z-index: -100;
}

.nums {
    background: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    text-align: center;
    transform-origin: center;
    transform: translate(0px, 80px);
    animation: Nums 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.font {
    font-family: Noto Sans;
    color: #1e1e1e;
}

.invis {
    width: 0px;
    position: relative;
    height: 0px;
    transition: transform 0.2s;
}

@keyframes Nums {
    0% {
        transform: translate(0px, 80px);
    }
    50% {
        transform: translate(0px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}