body {
    margin: 0;
}

h1,
h2,
h3,
p,
a {
    font-family: 'Helvetica';
    color: white;
}

a {
    text-decoration: underline;
}

header {
    overflow: hidden;
    text-align: left;
    /*display: flex;
    justify-content: center;*/
}

#headingwrapper {
    display: flex;
    justify-content: center;
}

#redpenwrapper {
    display: flex;
    justify-content: center;
}

#heading>h1 {
    font-size: 45px;
    margin: 0;
    color: black;
}

#heading>h3 {
    font-size: 25px;
    margin: 0;
    color: black;
}

#heading {
    margin: 1em;
}

#redpen {
    height: 535px;
    width: 480px;
    transform: translate(-10%, 0%);
}

main {
    background-color: black;
    display: grid;
    grid-template-columns: 331px;
    justify-content: center;
}

.content {
    width: 331px;
}

.content>p {
    font-size: 24px;
    line-height: 135%;
    margin: 0;
}

.content>h1 {
    font-size: 45px;
}

.content>a {
    font-size: 24px;
}

.reddot {
    color: #E03635;
}

@media (min-width: 800px) {
    main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        padding-left: 7rem;
        padding-right: 7rem;
    }
    header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        margin-top: 2rem;
    }
    #redpen {
        transform: translate(-20%, 0%);
    }
    #headingwrapper {
        justify-self: start;
        transform: translate(35%, 0%);
    }
}

main>#kontaktlinks {
    margin-top: 60px;
    margin-bottom: 100px;
}

footer {
    background-color: black;
    display: flex;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

footer>div>a,
p {
    margin: 0;
}