/* Style */
html, body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    height: 100%;
  }

 

.contact-container {
    min-height: calc(100vh - 137.5px - 133.5px); /* hight of header and footer */
    padding-left: 20px;
    padding-right: 20px;
}


/* Email text as image */
.email-container {
    width: 190px;
    height: 30px;
    background-image: url('image/bllankEmail.png');
    background-size: contain;  /* display whole image */
    background-repeat: no-repeat;  /* prevent repetition */
    background-position: center;  /* center aligned */
}


/* Impressum Page */

h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    max-width: 100%;
}

.impressum-text {
    font-size: 18px;
    margin: 0;
    margin-bottom: 40px;
    max-width: 100%;
}

.space {
    height: 40px;
}


/* mobile Impressum Page */
@media (max-width: 768px) {
    h3 {
        font-size: 18px;
    }

    .impressum-text {
        font-size: 16px;
    }
}



/* Datenschutz Page */

h4 {
    font-size: 28px;  /* biggest title */
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    max-width: 100%;
}

h5 {
    font-size: 18px;  /* smallest title */
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    max-width: 100%;
}


/* mobile Datenschutz Page */
@media (max-width: 768px) {
    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 16px;
    }

}
