@font-face {
  font-family: "CactusJack";
  src: url("Cactus-Jack/Cactus-Jack-Alternate.woff") format("woff");
}

@font-face {
  font-family: "Milker";
  src: url("Milker.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  background: white;
  font-family: "CactusJack", cursive;
}

.headline {
  font-family: "Milker", sans-serif !important;
  font-weight: lighter;
}


#page-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#plakat {
  width: 30rem;
  aspect-ratio: 1 / 1.414;
  background: rgb(239, 239, 239);
  color: rgb(23, 23, 23);
  padding: 3rem;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headline {
  margin: 0;
  margin-bottom: 1.2rem;
  font-size: 2.2rem;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 1px;
}


.tray {
  width: 90%;
  height: 55%;
  border: 6px solid #666;
  position: relative;
  overflow: hidden;
  background: #111;
  border-radius: 12px;
}

.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) brightness(0.6);
  transition: filter 0.2s ease;
}

.red-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 0, 0, 0.35);
  mix-blend-mode: screen;
  pointer-events: none;
}

.message {
  margin-top: 1.2rem;
  font-size: 2rem;
  text-align: center;
  opacity: 0.9;
}



