body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: "Dancing Script", cursive;
  color: white;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.title,
.subtitle {
  margin-right: 10px;
  white-space: normal;
  overflow: visible;
}

.title {
  color: #ff91af;
  font-size: 4em;
  margin-bottom: 20px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}

.subtitle {
  color: #ffffff;
  font-size: 1.5em;
  min-height: 1.5em;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}

.title,
.subtitle {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}

/* Snowfall Animation */
canvas#snowfall {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}
#main {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
