:root {
    --akzentfarbe: #faff00; /* Altrosa / Zitronengelb */
}

body {
    background-color: #91b7d3; /* deepbluegray #4f6b78; slate blue gray #91b7d3; Cadet Blue #5f8ea0; storm blue #567a8a; */
    color: black;
    font-family: monospace; /* klassische Kassenzettel-Optik */
}

main {
    width: 320px;  /* Desktop-Kassenzettel-Breite */
    margin: 40px auto;
}

p {
    line-height: 1.3;
    margin: 0 0 0.8em 0;
    padding-bottom: 0.6em;
    border-bottom: 1px dashed var(--akzentfarbe);
}

.doppelte-linie {
    border-bottom: 1px double var(--akzentfarbe);
    margin: 1em 0;
    padding-bottom: 0.2em; /* Abstand zwischen Text und Linie */
    font-weight: bold;      /* optional: Text hervorheben */
}

h1 {
    letter-spacing: 0.15em;
}

.bio {
    position: fixed;              /* schwebend über Kassenzettel */
    top: 20px;                    /* Abstand vom oberen Rand */
    left: 20px;                   /* linksbündig */
    font-family: "Times New Roman", Times, serif;  /* klassische Serifenschrift */
    font-size: 2.25em;            /* angenehme Größe für Desktop */
    line-height: 1.3;             /* Zeilenabstand */
    color: var(--akzentfarbe);    /* Zitronengelb, gleiche wie Akzentfarbe */
    z-index: 10;                  /* über dem Kassenzettel */
}

/* Links im Bio-Link selbst in Akzentfarbe */
.bio a {
    color: var(--akzentfarbe);    /* Zitronengelb */
}
/* Desktop (Standard) */
.impressum {
    position: fixed;
    bottom: 20px;               /* Abstand vom unteren Rand */
    right: 20px;                /* rechtsbündig auf Desktop */
    font-family: "Times New Roman", Times, serif;
    font-size: 2.25em;
    line-height: 1.3;
    color: var(--akzentfarbe);
    z-index: 10;
    text-align: right;          /* Text im Block rechts ausrichten */
}

.impressum p {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 600px) {

    /* Bio fixiert oben */
    .bio {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        font-size: 1.8em;       /* kleiner als Desktop */
        line-height: 1.2;
        padding: 10px 15px;
        background: transparent;
        z-index: 10;             /* immer oben */
        text-align: left;
        white-space: normal;
    }

    /* Impressum fixiert links unten */
    .impressum {
        position: fixed;
        bottom: 5px;
        left: 15px;
        font-size: 1.8em;
        line-height: 1.1;
        z-index: 10;             /* immer oben */
        text-align: left;
        white-space: normal;
    }

    /* Haupttext scrollt darunter */
    main {
        margin-top: 60px;        /* unter Bio starten */
        margin-bottom: 0;        /* scrollt direkt bis unter Impressum, bleibt aber dahinter */
        padding: 0 15px;
        position: relative;
        z-index: 1;              /* unter Bio & Impressum */
    }
}


