html, body {
    font-family: Arial, verdana, sans-serif ;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: hsl(10, 4%, 90%);
    height: 100%;
}

.divBody {
    padding-bottom: 40px;
}




/* --- Header (Logo und Eisenbahnfreunde Pforzheim e.V.) -----------*/
.divHeader, .divPageHeader {
    background-color: hsl(19, 7%, 58%);
    background: linear-gradient(0deg, hsl(20, 3.2%, 36.5%) 0%, hsl(18, 4.1%, 48.2%) 35%, hsl(24, 3.1%, 68%) 100%);    color: hsl(41,15%,99%);
    color: hsl(41,15%,99%);
}

/* --- Logo --------------------------------------------------------*/
.divLogo {
    display: table-cell;
}
    .divLogo img {
        width: 20vw;
        margin: 1vw;
    }

/* --- Headline ----------------------------------------------------*/
.divEFP {
    display: table-cell;
    width: 75vw;
    vertical-align: middle;
}
    .divEFP h1 {
        font-family: system-ui;
        margin: 0;
        font-size: 4.5vw;
        font-weight: 300;
    }




/* --- Body --------------------------------------------------------*/

/* --- Page --------------------------------------------------------*/
.divPageContainer {
    padding: 2vw;
    display: grid;
    grid-template-columns: 100%;
    gap: 1%;
}
@media (min-width: 480px) {
    .divPageContainer {
        grid-template-columns: 40% 50%;
        gap: 3%;
    }       
}


/* --- Bild (linke Spalte) -----------------------------------------*/
.colLeft img {
    width: 100%;
}

@media (min-width: 480px) {
    .colLeft img {
        margin-top: 1.5vw;
    }       
}

.notMobile {
    display: none;
}

@media (min-width: 480px) {
    .notMobile {
        display: block;
    }    
}

.colRight p {
    hyphens: auto;
    hyphenate-limit-chars: auto 3;
    hyphenate-limit-lines: 4;  
}

@media (min-width: 480px) {
    .colRight p {
        hyphens: auto;
        hyphenate-limit-chars: auto 5;
        hyphenate-limit-lines: 4;  
    }
}



/* --- Bild Orientierungsplan (unten auf  einigen Seiten) -----------*/
.Orientierungsplan img {
    width: 99%;
}

.Infotafel img {
    width: 99%;
}


/* --- Link-Liste ---------------------------------------------------*/
.linkList {
    margin: 0;
    margin-bottom: 0.8em;
    padding: 0;
    position: relative;
    left: 1vw;
  }

  .linkList li {
    margin-top: 0.6em;
    margin-left: 4vw;
    list-style-image: url("../_png/PfeilRight.png");
  }

  .linkList .noLink {
    list-style-image: url("../_png/Placeholder.png");
  }


  
/* --- Link-BackHome ------------------------------------------------*/
.LinkBackHome {
    text-align: right;
    margin-right: 3vw;
}

.LinkBackHome img {
    width: 16px;
}


/* --- Link (allgemein) ---------------------------------------------*/
a:link, a:visited, a:hover {
    text-decoration: underline;
    text-decoration-color: rgb(182, 182, 182);
    color: black;
  }


/* --- Footer (Impressum und Datenschutz ---------------------------*/
.divFooter, .divPageFooter {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: hsl(20, 3.2%, 36.5%);
    display: table;
    text-align: center;
}

.divImpressum,
.divDatenschutz {
    padding: 0.2rem 0 0.1rem 0;
}
.divImpressum,
.divDatenschutz {
    display: table-cell;
    width: 50%;
    text-align: center;
}

.divImpressum a,
.divDatenschutz a {
    text-decoration: none;
    color: hsl(41,15%,99%);
}

.divImpressum a:hover,
.divDatenschutz a:hover {
    text-decoration: underline;
}