/* Google Fonts 読み込み */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@500&display=swap');

/* 全体を囲うコンテナー */
.container {
  width: 100%;
  height: 100vh;
  background-color: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 時計の共通スタイル */
.clock {
  font-family: 'Urbanist', sans-serif;
  color: #111111;
  text-shadow: 0 0 10px #e0e0e0;
  line-height: 0.0;
  text-align: center;
}

/* 日付のスタイル */
.clock-date {
  font-size: 30px;
}

/* 時間のスタイル */
.clock-time {
  font-size: 100px;
}

/* 文字サイズ調整 */
@media screen and (max-width: 300px) {
  .clock-date {
    font-size: 6vw;
  }
  .clock-time {
    font-size: 30vw;
  }
}