* {
    margin: 0;
    padding: 0;
}
/*Allgemein*/
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 400;
}
.flex {
    display: flex;
    flex-direction: row;
}
.flexc {
    display: flex;
    flex-direction: column;
}
.flexspace {
    justify-content: space-between;
}
.keinlink {
    text-decoration: none;
    color: black;
}
.link {
    color: black;
    text-decoration: underline;
    text-decoration-color: black;
}
.padding {
    padding: 5px;
}
.center {
    text-align: center;
}
.cent {
    align-items: center;
    justify-items: center;
}
.inhalt,
.header,
.footer {
    word-break: break-word;
    hyphens: auto;
}
.buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px;
}
.button {
    text-decoration: none;
    color: black;
    height: auto;
    background-color: darkorange;
    margin: 5px 10px;
    font-family: "Damesplay Script";
    font-size: 35px;
    border-radius: 40px;
    transition: 0.7s;
    padding: 5px;
    text-align: center;
    cursor: pointer;
    border: none;
}
.button:hover {
    transition: 0.7s;
    background-color: darkred;
    color: white;
}
.bred {
    color: white;
    background-color: darkred;
}
.bred:hover {
    color: black;
    background-color: darkorange;
}
.bgrau {
    color: black;
    background-color: gray;
}
.bgrau:hover {
    color: black;
    background-color: gray;
}
.bblau {
    color: black;
    background-color: deepskyblue;
}
.bblau:hover {
    color: white;
    background-color: black;
}
.bdurch {
    color: black;
    background-color: #ffffff00;
    border: 2px solid black;
}
.bdurch:hover {
    color: white;
    background-color: black;
}

/*BLÖCKE*/
/*BLÖCKE*/
/*BLÖCKE*/

/*Header*/
.header {
    height: auto;
    margin: 0;
    padding: 5px;
}
.header .logo {
    height: auto;
    align-self: center;
}
.header .leiste {
    padding: 10px;
    align-items: center;
}
.header .titel {
    align-self: center;
    color: black;
}
.header .mobile {
    display: none;
    height: 100%;
    width: 100%;
    z-index: 200;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.header .mbuttons {
    z-index: 300;
}
.header .mbuttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 5px;
    margin-top: 10px;
    justify-content: center;
}
.header #menu-toggle {
    display: none;
}
.header .menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
}
.header .menu-icon div {
    height: 5px;
    background-color: black;
    border-radius: 5px;
}
.header .close {
    z-index: 201;
}
.header .close {
    position: absolute;
    right: 10px;
    top: 45px;
    width: 32px;
    height: 32px;
}
.header .close:before,
.header .close:after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 33px;
    width: 5px;
    background-color: black;
    border-radius: 5px;
}
.header .close:before {
    transform: rotate(45deg);
}
.header .close:after {
    transform: rotate(-45deg);
}
@media only screen and (max-width: 690px) {
    .header .buttons {
        display: none;
    }
    .header .menu-icon {
        display: flex;
    }
    .header #menu-toggle:checked ~ .mobile {
        display: flex;
    }
}

/*Hero mit Hintergrundbild*/
.hero-hgb {
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-hgb .bild {
    z-index: -1;
    position: absolute;
}
.hero-hgb .buttons {
    margin-bottom: 10px;
    justify-content: flex-start;
    margin-left: 15px;
}

/*Karten*/
.karten {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.kartenblock .karte {
    border-radius: 10px;
    padding: 10px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*Footer*/
.foot {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
    max-width: 100%;
    font-family: Inter;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}
.foot .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

/*Einfacher Titel*/
.titelchen {
    padding: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
}

/*Prolog und Epilog*/
.proepi .button {
    font-family: "Beyond Wonderland";
    font-size: 50px;
    height: 50px;
    line-height: 50px;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
}

/*Kapitel*/
.kapitelu .button {
    margin: 3px;
}

/*Kapitelfarben*/
.erzaehl {
    background-color: #a2e29e;
}
.lina {
    background-color: #fdd1a7;
}
.louisa {
    background-color: #a7fdfd;
}
.larissa {
    background-color: #fda7ee;
}
.luna {
    background-color: #a684f9;
}
.leo {
    background-color: #ff8282;
}

/*Kapiteltext*/

.kapiteltext .text {
    font-family: Inter;
    max-width: 50%;
    font-size: 18px;
    text-align: justify;
}
@media only screen and (max-width: 800px) {
    .kapiteltext .text {
        max-width: 70%;
    }
}
@media only screen and (max-width: 690px) {
    .kapiteltext .text {
        max-width: 100%;
    }
}

/*Footer*/

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-family: Inter;
}
.footer .logo {
    display: flex;
    flex-direction: row;
    align-self: center;
}
.footer .spalte {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 33.3%;
}
.footer .balken {
    display: none;
}
.footer .button {
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
}
@media only screen and (max-width: 690px) {
    .footer {
        flex-direction: column;
        justify-items: center;
    }
    .footer .spalte {
        width: auto;
    }
    .footer .trenner {
        display: none;
    }
    .footer .balken {
        display: block;
    }
}

/*Zentrierter Text*/
.mittext .text {
    font-family: Inter;
    max-width: 50%;
    font-size: 18px;
    text-align: justify;
}
@media only screen and (max-width: 800px) {
    .mittext .text {
        max-width: 70%;
    }
}
@media only screen and (max-width: 690px) {
    .mittext .text {
        max-width: 100%;
    }
}

/*Einzelbild*/
.einzelbild img {
    width: 50%;
}
@media only screen and (max-width: 690px) {
    .einzelbild img {
        width: 90%;
    }
}
