@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Light.woff') format('woff'), url('fonts/OpenSans-Light.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body,
button,
h2 {
    height: 100%;
    box-sizing: border-box;
    background-color: #f5f5f5;
    color: #333;
    font-family: 'OpenSans', Arial, sans-serif;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 2em;
    letter-spacing: 0.1em;
}

.content {
    display: grid;
    grid-template-columns: 1fr 700px 1fr;
    top: 14em;
    position: relative;
}

.content p {
    margin-bottom: 2em;
}

.name {
    color: rgb(142, 23, 47);
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-decoration-color: rgb(142, 23, 47);
}

button {
    border: 0px;
}

button:hover {
    text-decoration: underline;
    text-decoration-color: rgb(142, 23, 47);
    cursor: pointer;
}

h2 {
    text-decoration: underline;
    text-decoration-color: rgb(142, 23, 47);
    font-weight: normal;
}

#datenschutz-load {
    text-transform: none;
    line-height: 1.75em;
}

#datenschutz-load br {
    margin-bottom: 0.75em;
}

ul {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

li {
    list-style: none;
    margin-left: 0.25em;
}

li::before {
    content: "• ";
    color: rgb(142, 23, 47);
}