
:root {
    --backgroundBox: #352615;
}

html,
body {
    box-sizing: border-box;
    min-height: 100%;
    margin: 0;
    padding:0;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    font-family: "Roboto-Regular", Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 16px;
    /* color: var(--blue); */
    /* color: #404040; */
    color: #505050;

    /* keep the footer sticky to the bottom */
    display: flex;
    min-height: 100vh;
    flex-direction: column;

    background-image: url(images/higruhellsu.jpg);
    background-repeat: repeat;
}

/* Links der Navigation - Farbverhalten */
a			{ 	}
a:link		{ color: brown; }
a:visited	{ color:#800000; }
a:active	{ color:#ffffff; }
a:focus		{ color:#CC0000; }
a:active	{ color:#CC0000; }



.header .cover {
    background-color: var(--backgroundBox);
}

.header .navigationWrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.header .navigationTitle {
    font-size: 26px;
    color: #8B2323;
    padding-top: 10px;
    padding-right: 30px;
    margin-bottom: 20px;
    text-shadow: -1px -1px 3px rgba(150, 150, 150, 1);
}

.headerImage {
    height: 35vh;
    background-image: url(images/lotus-2738025.jpg);
    opacity: .8;
}

.dhammawheel {
    margin-top: 60px;
    margin-bottom: 20px;
}

.logo {
    min-width: 100px;
}

.logo img {
    height: 100px;
    width: 75px;
}


.article {
    margin: auto;
    max-width: 40em;
}

h1 {
    color: #630;
}

h3 {
    color: #630;
    margin-bottom: -20px;
}

.dhammawheelFooter {
    margin: 40px 0;
    height: 70px;
}

.footer {
    background-color: rgb(112, 97, 97);
    color: white;
    width: 100%;
    height: 40px;
    text-align: right;
    padding: 10px;
}


.tooltip {
    color: #0691B0; /* mittelblau für Links  */
    /*text-decoration: underline;*/
    font-style:normal;
    cursor: help;
    position: relative;
}
.tooltip span[role=tooltip] {
    display: none;
}
.tooltip:hover span[role=tooltip] {
    display: block;  
    position: absolute; 
    bottom: 2em;
    left: -6em;
    width: 15em;
    padding: 0.5em;
    z-index: 100;
    color: #000; 
    background-color: #79CADC;
    border: solid 1px #c32e04;
    border-radius: 0.2em;
  }

.quellagb {
    line-height:135%;
    padding-left: 10px;
    padding-right: 10px;
    color:#505050;
    opacity: .8;
}



.downloadLink {
    position: relative;
}

.showText {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centerElement {

}