#clockapp {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    line-height: 0;
    /* font-size: 350px;
    font-family: 'wec'; */
}

#background {
    position: absolute;
    left: 0;
    top: 0;
}

#clock {
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-sizing: border-box;
    /* background-color: rgb(35, 35, 35); */
    box-shadow: 5.5px 9.526px 39.56px 3.44px rgba(0, 0, 0, 0.20), 21px 36.373px 90px 0px rgba(0, 0, 0, 0.30);
    z-index: 10;
}

#backstage {
    width: 80%;
    height: 80%;
    background: conic-gradient(#eae182 42%, #f23f97);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 10;
}

#frontstage {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

#tint {
    background-color: rgba(255, 255, 255, 0.01);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 20;
}

#light,
#noise {
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
}

#light {
    z-index: 30;
}

#noise {
    opacity: 0.16;
    mix-blend-mode: soft-light;
    z-index: 40;
}