/* styles.css */
/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: Arial, sans-serif;
  position: relative;
}

html::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../static/chinese-zodiac-snake.png') no-repeat center center fixed;
  background-size: cover;
  filter: brightness(10%);
  /* 背景变暗 */
  z-index: -1;
  /* 确保这个层在内容层下 */
}

#container {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}


/* 版权信息样式 */
#copyright {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  z-index: 20;
}

#audio {
  display: none;
}