html body{
    margin:0;
    padding: 0;
    background: rgbwhite;
    /* border: solid red;     */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.9rem;
}
.hauptContainer{
    width: 100%vw;
    height: 100%vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100px 120px 1fr 50px;
    grid-template-areas:
       "header"
       "menuBox"
       "container"
       "footer"
    ;
    text-align: center;
    
}
.container{

    min-width: 100%;
    grid-area: container;
    background-color: white;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-direction: row;
    flex-wrap: wrap;
}
/* Grid anlegen, die Breite soll 
sich nach dem Inhalt richten: */
li.nav-item {
    display: inline-grid;
    overflow: hidden; 
    /* border: solid red; */
}

li h2,
li a {
/* Beide Element sollen in der selben Zelle liegen
und sich überdecken: */
grid-column: 1 / 2;
grid-row: 1 / 2;
/* border: solid green; */
}

li h2 {
display: flex;
align-items: center;
justify-content: center;
margin: 0;
transition: transform 0.4s;
/* Den Text nach links verschieben, so dass
er zunächst unsichtbar ist: */
transform: translateX(-100%);
}

li.nav-item:hover h2 {
/* Beim Hover heben wir die Verschiebung
auf, so dass der Text sichtbar wird: */
transform: translateX(0);
backdrop-filter: blur(5px);
}

/* 
.footer{
    grid-area: footer;
    background-color: whitesmoke;
    position:relative;
    display: flex;
    justify-content: center;
}
.item{
    border:solid rgb(216, 211, 211);
    height: 500px;
    padding: 20px 10px;
    min-width: 400px;
}

.menu .post > ul{
    list-style: none;
    display: flex;
    gap:20px;
}
.menu li a{
    text-decoration: none;
    font-weight: 400;
    color: red;

}
.menu a:hover{
    color: grey;
}
.footer ul{
    list-style: none;
    display: flex;
    gap: 30px;
}
.footer li a{
    text-decoration: none;
    color: #000;
    font-family: arial;
}
.footer a:hover{
    color: grey;
}
@media (max-width: 450px){
    #navi{
        display: none;

    }
    .header{
        text-align: left;
        margin-left:20px;
    }
    .header img{
        width: 70%;
        padding-left: 0;

    } 
}/*
