body {
  background-color:#151522;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; 
}

body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

#musicToggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: #c62828;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#musicToggle:hover {
  background: #b71c1c;
}

#snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.snowflake {
  position: absolute;
  top: -10px;
  color: white;
  font-size: 12px;
  opacity: 0.8;
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(110vh);
  }
}

svg{
  width:90%;
  height:90%;
  visibility:hidden;
}

.christmas-text {
  position: fixed;
  bottom: 60px;
  width: 100%;
  text-align: center;
  color: #f8f3e8;
  font-size: 20px;
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: 1px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 5;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.footer-credit {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Georgia", "Times New Roman", serif;
  z-index: 5;
}

.footer-credit a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
}

.footer-credit a:hover {
  text-decoration: underline;
}
