#snow-container {
  background: #fff;
  position: relative;
  height: 300px; /* 高さを300pxに設定 */
  overflow: hidden; /* コンテナ外のアニメーションを非表示に */
  border: #000; /* 枠を表示するための設定 */
}

.snowflake {
  white-space: nowrap;
  position: absolute;
  color: #000;
  opacity: 0.8;
  font-size: 1.5rem;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards; /* アニメーション終了後の状態を保持 */
}

#congratulations-message {
  position: relative;
  height: calc(vh - 5px); /* コンテナの高さを調整 */
  overflow: hidden;
  width: 100%;
  text-align: center;
  color: red;
  font-size: 2rem;
  background-color: #fff;
  padding: 10px;
  z-index: 100;
  font-weight:bold
}


@keyframes fall {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100vh); /* 画面の高さ分下に移動 */
  }
}

/* モバイルデバイス用のメディアクエリ */
@media (max-width: 640px) {
  #snow-container {
    height: 200px; /* 高さを300pxに設定 */
  }

  .snowflake {
    left : 10%;
    font-size: 1rem;
  }
}