html,
body {
  padding: 0;
  margin: 0;
}
#contain {
  display: flex;
  flex-direction: column;
}
#Snowy-Night {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto 5px;
}

div #words {
  display: flex;
  color: rgb(218, 17, 201);
  white-space: nowrap;
}

div #words span {
  font-size: 14px;
  opacity: 0;
  text-shadow: 1px 1px greenyellow, 2px 2px greenyellow, 1px 1px greenyellow, 2px 2px greenyellow, 1px 1px greenyellow, 2px 2px greenyellow;
}

.animation {
  animation: move 1s var(--d) cubic-bezier(0.65, -0.21, 0.25, 1) forwards;
}

.title-style-1 {
  color: rgb(60, 0, 128);
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  display: none;
}

@keyframes move {
  from {
    opacity: 0;
    transform: translateY(300%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}