* {
    box-sizing: border-box;
}

/** Breakpoint: 576px+ */
@media (min-width: 36em) {}

/** Breakpoint: 768px+ */
@media (min-width: 48em) {}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {}

/** Breakpoint: 1200px+ */
@media (min-width: 75em) {}

/** Breakpoint: 1400px+ */
@media (min-width: 87.5em) {}


html {
    font-size: 1em;
    min-height: 100%;
}

body {
    /* min-height: 100%; */
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(100,100,100);
    background-image: url("../img/pyl - hintergrund.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    /* margin: 0 0 0 0;
    padding: 0 0 0 0; */
    /* text-shadow: 0px 0px 40px black; */
    overflow-x: hidden;
}


.main-content {
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertikal */
}

.img {
    display: block;
    max-width: 100%;   /* Bild schrumpft nie über die Container-Breite hinaus */
    width: auto;       /* statt width:100% */
    height: auto;
    margin: 0 auto;    /* zentriert, solange das Bild kleiner ist als der Container */
  }


.schrift {
    color: #ffffff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .schrift{
        text-align: center;
    }
}

.theo {
    font-size: 30px;
    color: rgb(55, 151, 130);
    text-align: center;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .theo {
        font-size: 40px;
    }
}

.img_buch {
    display: block;
    width: 9rem;  
    height: 15rem; /* Bild schrumpft nie über die Container-Breite hinaus */
    margin: 0 auto;    /* zentriert, solange das Bild kleiner ist als der Container */
  }

.buch-link-container {
    /* sorgt dafür, dass der Link-Text horizontal zentriert wird */
    text-align: center;
    /* optional: etwas Abstand um den Link herum */
    margin: 20px 0;
  }
  
  .buch-link {
    /* Display inline-block erlaubt Padding und Hintergrundfarbe */
    display: inline-block;
    /* innenliegender Abstand */
    padding: 10px 20px;
    /* Schriftformatierung */
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    /* Hintergrundfarbe (kann angepasst werden) */
    background-color: #FF9900;
    /* abgerundete Ecken */
    border-radius: 4px;
    /* weicher Schatten */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    /* Übergangseffekt für Hover */
    transition: background-color 0.3s ease;
  }
  
  .buch-link:hover {
    /* etwas dunkleres Orange beim Hovern */
    background-color: #e08800;
  }

.category {
    background-color: white;
    margin: 30px 30px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta {
    display: block;
    margin-top: 10px;
    color: #004466;
    text-decoration: underline;
}

.footer {
    padding-bottom: 3rem;
}

.footer_text {
    margin-top: 5rem;
    text-align: center;
    color: white;
}

.footer__links {
    font-size: 0.8rem;
}

.footer__link {
    color: white;
    text-decoration: none;
    font-size: 0.6rem;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .footer__link {
        font-size: 0.7rem;
    }
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__terms {
    color: white;
    font-size: 0.9rem;
    font-weight: bolder;
    letter-spacing: 0.1em;
    text-decoration: none;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .footer__terms {
        font-size: 1.5rem;
    }
}

.footer__terms:hover {
    text-decoration: underline;
}

.footer__read {
    color: white;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-decoration: none;
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
    .footer__read {
        font-size: 1rem;
    }
}
