
@font-face {
  font-family: 'GothicFraktur';
  src: url('GermanGothicFrakturBlackletter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background-color: black;
  overflow: hidden;
  font-family: 'GothicFraktur', serif;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.centered-text {
  font-size: 2em;
  text-align: center;
  opacity: 0;
  animation: fadeInOut 8s ease-in-out forwards;
  z-index: 2;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

.smoke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(255,255,255,0.05), transparent);
  animation: smokeDrift 30s infinite linear;
  z-index: 1;
}

@keyframes smokeDrift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
  100% { transform: translate(0, 0); }
}
