html, body{
    margin: 0;
    padding: o;
    font-family: 'Fuzzy Bubbles', cursive;
}

.hintergrundBild {
    top: 0;
    left: 0;
    position: fixed;
    height: 100%;
    width:100%;
    z-index: -999;
}

/* Header */

.header {
    width: 100%;
    height: 8vw;
    position: fixed;
    background-color: #8E8321;
    top: 0;
    display: grid;
    grid-template-columns: 13% 57% 10% 10% 10%;
    grid-template-areas: "logo title instaLogo whatsappLogo gmailLogo"
}

.logo {
    border-radius: 15px;
    height: 7vw;
    width: 7vw;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0.5rem;
    bottom: 0;
}

.aTitle {
    text-decoration: none;
}

.title {
    height: 5vw;
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 6vw;
    text-align: center;
    margin: 0;
    color: white;
    font-weight: lighter;
}

.titleImpressum {
    text-align: center;
    font-size: 1.5vw;
}

.social {
    margin: auto;
    top: 0;
    bottom: 0;
    position: absolute;
    width: 4vw;
}

/* Inhalt */

.parentImpressum {
    margin-top: 11rem;
    margin-left: 10%;
    background-color: hsla(54, 62%, 34%, 0.5);
    width: 80%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    border-radius: 2rem;
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 1), 0 1px 3px 0 rgba(0, 0, 0, 1);
}

.childImpressum {
    justify-content: center;
    width: 90%;
    height: 90%;
    margin: 4% 0 4% 4%;
    background-color: #777777;
    border-radius: 2rem;
    padding: 1%;
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 1), 0 1px 3px 0 rgba(0, 0, 0, 1);
}

.hImpressum {
    
    font-size: 1.5rem;
   
}

@media only screen and (max-width: 600px) {
    .header {
        grid-template-columns: 0% 70% 10% 10% 10%;
        grid-template-areas: "logo title instaLogo whatsappLogo gmailLogo";
        height: 12vw;
      }
    
      .Logo {
        opacity: 0;
      }
    
      .title {
        font-size: 9vw;
        height: 8vw;
      }

      .social {
        height: auto;
        width: 6vw;
      }
}