@font-face {
  font-family: "Signature";
  src: url("../Font/Photograph Signature.ttf") format("truetype");
}

:root {
  --fade-in-duration: 500ms;
  --fade-duration: 600ms;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  height: 100vh;
  overflow: hidden;
  font-family: "Signature", cursive;
}

#wish-stage {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.wish-slot {
  position: absolute;
  max-width: 45%;
  text-align: center;
  opacity: 0;
  transition: opacity var(--fade-in-duration) ease-out;
}

.wish-slot.visible {
  opacity: 1;
}

.wish-slot.fade-out {
  transition: opacity var(--fade-duration) ease-in;
  opacity: 0;
}

.slot-text {
  color: #fff;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.slot-name {
  margin-top: -0.3rem;
  color: #ccc;
  text-align: right;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}