/* In ALLEN CSS-Dateien die @font-face Regeln anpassen */
@font-face {
    font-family: 'Just Another Hand';
    /* NUR moderne Formate behalten */
    src: url('../fonts/Calligraph/Naissanmixed2-Regular.woff2') format('woff2'),
         url('../fonts/Calligraph/Naissanmixed2-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* ⭐ WICHTIG: Text sofort mit Fallback-Font anzeigen */
}

@font-face {
    font-family: 'Just Another Hand 2';
    /* NUR moderne Formate behalten */
    src: url('../fonts/Calligraph/Naissan2-Regular.woff2') format('woff2'),
         url('../fonts/Calligraph/Naissan2-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* ⭐ WICHTIG: Text sofort mit Fallback-Font anzeigen */
}

p{ 
    font-family: 'Just Another Hand 2';
    text-align: justify;
    font-weight: 300;
    color:rgb(139,35,35);
    text-align: center;
    letter-spacing: -0.05em;
    word-spacing: 0.2em;
}

.headline{
    font-family: 'Just Another Hand';
    font-weight: 300;
    letter-spacing: -0.05em;
    font-size: 5vw;
}

.headline2{
    font-family: 'Just Another Hand';
    font-weight: 300;
    letter-spacing: -0.05em;
    font-size: 5vw;
}

a{
    color: black;
    text-decoration: none;
}

#imgText{
    position: relative;
    display: block;
}

#imgAloneOverlay{
    pointer-events: none;
    position:fixed;
    z-index: 50;
    display:block;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
}

#imgAloneOverlayLand{
    pointer-events: none;
    position:fixed;
    z-index: 50;
    display:block;
    left: 0;
    transform: translate(0,-50%);
    width: 100%;
    height: auto;
    top:50lvh;
}

#imgAloneTOP{
    pointer-events: none;
}


#imgAloneTOPempty{
    pointer-events: none;
    z-index: -10;
}