html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: none;
}

body {
    font-size: 30px;
    font-weight: normal;
    font-family: "Raleway", sans-serif;
    line-height: 48px;
    color: #555;
}
div {
    box-sizing: border-box;
}
p {
    margin: 0;
}

.layout {
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    min-height: 100%;
    text-align: center;
}

.logo {
    width: 90%;
    max-width: 820px;
}

.content {
    position: relative;
    display: block;
    margin-top: 40px;
    margin-bottom: 100px;
}
.content.center {
    text-align: center;
}
.content.header {
    margin-bottom: 30px;
}
.content.imprint, .content.dataProtection {
    font-size: 80%;
}

.background {
    position: absolute;
    top: -18px;
    right: -20%;
    width: 350%;
    height: 350%;
    border-top-left-radius: 350%;
    z-index: -1;
}
.bgColor{
    background-color: #FCE27C;
}
.bgLogoColor {
    background-color: #FEF086;
}
.bgLogoLightColor {
    background-color: #FFF7B4;
}
h1 {
    display: block;
    font-size: 50px;
    font-weight: normal;
    line-height: 60px;
    margin: 10px auto;
    padding: 0;
    width: 90%;
}

h1.nowrap {
    white-space: nowrap;
}

h2 {
    font-size: 35px;
    font-weight: bold;
    padding: 0 5%;
}
h3 {
    font-size: inherit;
    font-weight: bold;
    padding: 0 5%;
}
p {
    margin: 0 auto;
    padding: 5px 5%;
}

div.table {
    display: inline-table;
    border-collapse: collapse;
    margin: 0 auto;
}
div.tr {
    display: table-row;
}
div.td {
    display: table-cell;
    white-space: nowrap;
    padding: 0 5px;
}
div.td:first-child {
    text-align: right;
}
div.td:last-child {
    text-align: left;
}

a,
a:visited,
a:hover {
    color: inherit;
    font-size: inherit;
}

.hr {
    display: block;
    border-top: 2px solid #555;
    width: 90%;
    margin: 30px auto;
}

@media (max-width: 991px) {
    body {
        font-size: 24px;
        line-height: 38px;
    }

    h1 {
        font-size: 42px;
        line-height: 42px;
    }

    .hr {
        margin: 24px auto;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 18px;
        line-height: 24px;
    }

    .layout {
        padding: 60px 0;
    }

    h1 {
        font-size: 33px;
        line-height: 35px;
    }

    .hr {
        margin: 15px auto;
        border-top-width: 1px;
    }
}

.footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex: 1;
    background-color: #FFF;
    text-align: left;
    padding: 5px 5%;
    font-size: 18px;
}
.footer div {
    display: flex;
    flex: 1;
}
.footer div:last-child {
    flex: none;
    flex-shrink: 0;
}