/***** CSS for imprint, privacy policy and terms of service *****/

body {
    padding: 0;
    background-color: var(--body-background);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    overflow-x: hidden;
    font-family: Inter;
    font-weight: 400;
    color: var(--text);
    margin: 0;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

hr {
    border-top: 1px solid #A7A7A7;
    border-bottom: none;
}

.content {
    padding: 50px 200px 0 100px;
}

h1 {
    margin: 10px 0;
    font-size: 48px;
}

.table {
    margin-block-start: 1em;
    margin-block-end: 1em;
    max-width: 700px;
}

.table .row p {
    margin: 0;
    line-height: 1;
}

.row {
    display: flex;
    margin-bottom: 7px;
}

.table .row p:nth-child(1) {
    width: 40%;
    margin-right: 40px;
}

.table .row p:nth-child(2) {
    width: 60%;
}

.space-top {
    margin-block-start: 2em;
}

h3 {
    margin-block-end: 0.5em;
    font-size: 32px;
}

.imp-text {
    color: #dbfb2e;
    font-weight: 500;
}

footer {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

footer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    .content {
        padding: 0 40px;
        padding-top: 20px;
    }
}

@media screen and (max-width: 800px) {
    .content {
        padding: 0 20px;
        padding-top: 10px;
    }
}

@media screen and (max-width: 600px) {
    .content {
        padding: 0 20px;
    }
}