
/* ------------------------------------------------------------------------------- */
html {
    /* font-family: 'Arvo', serif; */
    display: block;
    font-family: 'DejaVu Sans', sans-serif;
    font-size: 1.5rem;                              /* Schriftgröße: 1rem = 16px * 1.5rem */
    margin: 0%;                                 /* Dokument Aussenabstand */
    padding: 1%;                                 /* Dokument Innenabstand */
    background-color: rgb(155, 255, 255);
    justify-content: center;
}

/* Style site head line */
header {
    display: flex;
    background-color: #165892;
    margin: 0em;
    text-align: center;
    height: 6.2rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    align-items: center;
}

/* Style für den Körper */
body {
    font-family: 'DejaVu Sans', sans-serif;
    /*  font-family: 'Calibri', sans-serif;
        font-family: Geneva, "Lucida Sans Unicode", "Lucida Grande", Verdana, sans-serif;
        font-family: 'Manrope', sans-serif; 
        font-family: 'Arvo', serif;
        font-family: 'Liberation Mono', 'Courier New', Courier, monospace; */
}

h1 {
    line-height: 100%;
    font-size: 3rem;
    margin-inline: auto;
}
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem ; }
h4 { font-size: 1.25rem ; }
/* ------------------------------------------------------------------------------- */



/* ------------------------------------------------------------------------------- */
/* Style für Linkfarben */
a:link {
    color: blue; /* Standardfarbe */
}
/* Farbe für besuchte Links */
a:visited {
    color: red; /* Standardfarbe */
}
/* Farbe beim Überfahren mit der Maus */
a:hover { color: yellow;
}
/* Farbe beim Klicken (aktiv) */
a:active { color: orange; 
}
/* Spezifische Linkfarbe mit Klasse */
a.meinklasse { color: green; 
}
/* ------------------------------------------------------------------------------- */



/* ------------------------------------------------------------------------------- */
/* Style menubar */
menu {
    padding: 0;
    font-size: 1.75rem;
    font-weight: bold;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    margin-bottom: 0.25%;
    padding-inline-start: 0px;
}
/* Menu Liste */
menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;
}
/* Menu Aufzählung */
menu ul li {
    float: left;
}
/* Menu Aufzählung Link */
menu ul li a {
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
/* Menu Aufzählung Link nicht hervorgehoben*/
menu ul li a:hover:not(.active) {
    background-color: #111111;
}
/* Menu Aufzählung Link hervorgehoben*/
menu ul li a.active {
    background-color: #04AA6D;
}
/* ------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------- */
/* Mittelerer Sektor für die Website Inhalte */
section { 
    display: inline-block;
    width: 100%;
    justify-content: center;
}
    /* Block links im Sektor */
    article {
        box-sizing: border-box;
        float: left;
        width: 66%;
        height: auto;
        margin: 0.6rem;
        margin-left: 0rem;
        padding: 0.5rem;
        background-color: #f1f1f1;
        box-shadow: 0.5rem 0.5rem 0.25rem silver;
	    border-radius: 1rem;
    }
    /* Block rechts im Sektor */
    aside {
        float: right;
        width: 30%;
        height: auto;
        padding: 0rem;
        margin: 0.6rem;
        margin-right: 0.5rem;
        background: #ccc;
        justify-content: center;
        justify-items: center;
        background-color: darkgray;
        box-shadow: 0.5rem 0.5rem 0.25rem silver;
	    border-radius: 1rem;
    }
/* ------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------- */
.lsmenu {
    display: grid;
    font-size: 1.5rem;
    padding-left: 2rem;
    padding-top: 0rem;
    margin-bottom: 0rem;
    margin-top: 0rem;
.lsmenu li {
        margin-top: 0rem;
        margin-left: 0rem;
        margin-bottom: 0rem;
    }
}
/* ------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------- */
/* Logo website left up */
.logo {
    display: flex;
    width: 5rem;
    height: 5rem;
    margin: 0.5rem;
    background-color: #002f59;
}
/* Logo Copyright CC-Zero */
.cc0logo {
    display: flex;
    width: 8rem;
    margin: 0.5rem;
}
/* ------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------- */
/* Thumbnail Galarie */
div.gallery {
    display: flex;
    flex-wrap: wrap;
    vertical-align: middle;
    justify-content: center;
    align-content: center;
}
div.gallery-item {
    margin: 1%;
    color: darkblue;
    width: calc(25% - 2%);
}
div.gallery-item:hover {
    color: red;
    border: 2px solid;
}
div.gallery-item a img {
    width: 100%;
}
div.gallery-item div.desc {
    padding: 0.5%;
    text-align: center;
    font-size: 0.75rem;
}
/* ------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------- */
/* Uhr im right frame */
.watch {
    display: flex;
    margin: 0.5rem;
    background-color: #ffffff;
    padding: 0px;
    height: 330px;
    border: none;
}
/* kalender im right frame */
.kalender {
    display: flex;
    margin: 0.5rem;
    width: 350px;
    height: 250px;
    border: none;
}
/* ------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------- */
/* Style the footer */
footer {
    display: flex;
    height: 3rem;
    padding: 0.4rem;
    background-color: #808080;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    align-items: center;
}
/* ------------------------------------------------------------------------------- */
