/* re-validiertes main.css - 13-02-23 */

body {
    margin: 0;
    height: 100vh;
}
html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    color: #464646;
}
a {
    color: #0a39cc;
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    color: rgb(208, 40, 18);
    background-color: rgb(255, 255, 255);
}
img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
h1 {
    font-size: 2rem;
    line-height: 1.2;
    padding-top: 0.8rem;
}
.gridcontainer {
    display: grid;
    width: 100%;
    height: auto; 
    grid-template-rows: 14% 1fr 8%;
    grid-template-columns: 100%;
    grid-template-areas: "titel" "inhalt" "fuss1";
	justify-contents: center;
}
.titel {
    grid-area: titel;
    background-color: skyblue;
    text-align: center;
}
.inhalt {
    grid-area: inhalt;
    margin: 0.25rem;
    color: #464646;
    text-align: center;
}
.item {
    float: left;
    margin-right: 5px;
    display: inline;
}
.fuss1 {
    grid-area: fuss1;
    background-color: skyblue;
    color: #464646;
    padding: 0.8rem 0 0.2rem;
    text-align: center;
}
.clear {
    clear: both;
}