/* Google Font einbinden */
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

/* Weltkarte als Hintergrund */
.weltkarte-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../IMG/weltkarte.png'); /* KORREKTEN PFAD EINSETZEN */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dunkles Overlay für besseren Textkontrast */
.weltkarte-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dunkel-overlay */
    z-index: 1;
}

/* Overlay für den Text */
.weltkarte-bg .overlay {
    position: relative;
    z-index: 2;
}

.handschrift {
    font-family: 'Satisfy', cursive;
    font-size: clamp(2rem, 6vw, 6rem);  /* MIN 2rem, MAX 6rem für 43" Full HD */
    color: white;
    white-space: nowrap;
    display: inline-block;

    text-shadow:
        4px 4px 0 #555,
        8px 8px 0 #333,
        12px 12px 20px rgba(0, 0, 0, 0.6);

    filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
    transform: perspective(10000px) rotateX(1deg);
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.1em;
}

/* Google Font einbinden */
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

/* Weltkarte als Hintergrund */
.weltkarte-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../IMG/weltkarte.png'); /* KORREKTEN PFAD EINSETZEN */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dunkles Overlay für besseren Textkontrast */
.weltkarte-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dunkel-overlay */
    z-index: 1;
}

/* Overlay für den Text */
.weltkarte-bg .overlay {
    position: relative;
    z-index: 2;
}

.handschrift {
    font-family: 'Satisfy', cursive;
    font-size: clamp(2rem, 6vw, 6rem);  /* MIN 2rem, MAX 6rem für 43" Full HD */
    color: white;
    white-space: nowrap;
    display: inline-block;

    text-shadow:
        4px 4px 0 #555,
        8px 8px 0 #333,
        12px 12px 20px rgba(0, 0, 0, 0.6);

    filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
    transform: perspective(10000px) rotateX(1deg);
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.1em;
}






