html{
    font-size: 25px;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 125%;
}
body {
    margin: 0; /*distance from top*/
    height: 100%;
    padding: 0;
}

.mainBody{
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 800px;
    padding: 0 10vw;
    margin: 45px auto 100px auto;

}

.mainBody,
.landingimg {
    flex: 1; /* nimmt den verfügbaren Platz ein */
}

.maintitle{
    font-family: Verdana, Tahoma, 'Arimo', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    margin-top: 35px;
}

.titletext{
    font-family: Verdana, Tahoma, 'Arimo', sans-serif;
    font-size: 1rem;
    font-style: italic;
    margin-top: 60px;
    margin-bottom: 30px;
}

table{
    width: 100%;
    border-collapse: collapse;
}

td{
    text-align: left;
}

.bodytext{
    /*font-size: 0.625rem*/
    font-size: 0.75rem;
    font-family: 'Roboto', 'Helvetica Neue', Tahoma, sans-serif;
}

/* responsive styles */


@media screen and (max-width: 800px){
    html{
        line-height: 120%;
    }
    .mainBody{
        padding: 0 10vw;
        margin: 30px auto 75px auto;
    }
}
@media screen and (max-width: 600px) {
    html{
        line-height: 110%;
    }
    .maintitle{
        font-size: 1.125rem;
    }

    .titletext{
        font-size: 0.875rem;
    }

    .bodytext{
        font-size: 0.625rem;
    }
}

@media screen and (max-width: 400px) {
    html{
        line-height: 110%;
    }
    .maintitle{
        font-size: 1.125rem;
    }

    .titletext{
        font-size: 0.75rem;
    }

    .bodytext{
        font-size: 0.625rem;
    }
}
