 /* ------------------------------------------------ */
/* O'clock */
/* ------------------------------------------------ */
#clock {
    font-family: 'Share Tech Mono', monospace;
    text-align: center;
  }
.clock-text {
    font-family: Lato,sans-serif;
    font-weight: 600;
    text-align: center;
  }

  .scrolling-text-container {
    display: flex;
    overflow: hidden; /* 隐藏超出容器的部分 */
    width: 100%; /* 容器宽度为视口宽度 */
    white-space: nowrap; /* 防止文本换行 */
}
 
.scrolling-text {
    display: inline-block;
    animation: scrollText 10s linear infinite; /* 动画设置 */
}
 
@keyframes scrollText {
    0% {
        transform: translateX(100%); /* 从右侧开始 */
    }
    100% {
        transform: translateX(-100%); /* 到左侧结束，并超出容器 */
    }
}