

@font-face{
  font-family: "Tan Meringue";
  src: url("TAN MERINGUE.woff2") format("woff2"),
       url("TAN MERINGUE.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Grundlayout */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    overflow: hidden;
}

/* Animiertes Hintergrundbild */
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url("SB_Sticker.png") no-repeat center;
    background-size: contain;
    animation: introAnimation 3s forwards;
}

/* Animation */
@keyframes introAnimation {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    30% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0.15; /* bleibt leicht sichtbar im Hintergrund */
        transform: scale(1);
    }
}

/* Button Container */
.button-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
}

/* Buttons */
.btn {
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
	text-decoration: none;

    font-family: "Tan Meringue", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;

    color: white;
    text-decoration: none;

    border-radius: 50%;

    /* Glass Effekt */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);

    /* Startposition für Animation */
    transform: translateY(60px);
    opacity: 0;

    transition: 0.3s ease;
}

/* Hover */
.btn:hover {
    transform: scale(1.15);
    background: rgba(255,255,255,0.25);
	text-decoration: none;
}

/* Einflieg-Animation */
@keyframes flyIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Nacheinander erscheinen (nach 3s Intro) */
.btn:nth-child(1) {
    animation: flyIn 0.8s ease forwards;
    animation-delay: 3s;
}

.btn:nth-child(2) {
    animation: flyIn 0.8s ease forwards;
    animation-delay: 3.3s;
}

.btn:nth-child(3) {
    animation: flyIn 0.8s ease forwards;
    animation-delay: 3.6s;
}

.btn:nth-child(4) {
    animation: flyIn 0.8s ease forwards;
    animation-delay: 3.9s;
}




  


.impressum {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: ffff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  padding: 4px 0;
  text-align: center;
  z-index: 5;
}