/* Reset – aber NICHT width/height global setzen */
* {
  margin: 0;
  padding: 0;
  font-family: 'Lucida Sans', 'Lucida Sans Regular',
               'Lucida Grande', 'Lucida Sans Unicode',
               Geneva, Verdana, sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black;
}

#balloon-bg{
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;

  /* subtle depth */
  filter: saturate(1.05) contrast(1.02);
}

.fullscreen-svg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.body {
  position: relative;
  z-index: 1;
  min-height: 50%;
  display: grid;
  place-items: center;
  color: white;
}

.body h1 {
  color: white;
  font-size: 100px;
  font-weight: 900;
}

.below {
    position: relative;
    z-index: 2;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.below h2 {
    color: white;
    font-size: 70px;
    font-weight: 500;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(69, 0, 0);
    color: white;
    text-align: center;
    box-shadow: 0px -10px 10px rgb(69, 0, 0);
}

.balloon{
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform, opacity;
  user-select: none;

  /* Looks more “designed” than raw emoji */
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.35));
  opacity: 0;
}

@media (prefers-reduced-motion: reduce){
  #balloon-bg{ display: none; }
}