:root {
    --main-color: #1b1b1b;
    --link-color: #616161;
    --main-font: "Host Grotesk", sans-serif;
    --space-1: 1rem;
    --space-2: 2rem;
    --space-3: 3rem;
    --space-4: 4rem;
    --space-5: 5rem;
}

* ⁠{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-hyphens: auto;
    hyphens: auto;
}

#points > div {
    margin-bottom: var(--space-3);
}

html {
    padding: 0px;
    color: var(--main-color);
    font-family: var(--main-font);
    color: var(--main-color);
}

body {
    padding: 0px;
    margin: 0px;
    font-size: 1.125rem;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.bereich {
    height: 100px;
}

.intro {
    margin-bottom: var(--space-5);
}

h1 {
    font-size: 2.5rem;
    margin-top: 0px;
}

h2 {
    font-size: 2rem;
    margin-top: 0px;
}

.wrapall {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: var(--space-3);
}

@media screen and (max-width: 768px) {
    .wrapall {
        grid-template-columns: 1fr;
        padding: var(--space-1);
    }
    
}

.wrap1 {
    /* background-color: blueviolet; */
}

.social {
    /* background-color: yellowgreen; */
    display: flex;
    justify-content: flex-end;
    gap: var(--space-1);
    position: sticky;
    top: var(--space-3);
    margin-bottom: var(--space-3);
}

@media screen and (max-width: 768px) {
    .social {
        justify-content: center;
        margin-top: var(--space-3);
        position: static;
    }
    
}

.social a img {
    width: 2rem;
    height: 2rem;
}

p {
    font: "Host Grotesk";
    line-height: 1.2;
}

a {
    color: var(--main-color);
    text-decoration: none;
}

#points {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

@media screen and (max-width: 1200px) {
    #points {
        grid-template-columns: 1fr;
    }
}

.logo {
    width: 12vw;
    height: auto;
}

#impressum {
    color: var(--main-color);
}

@media screen and (max-width: 768px) {
    iframe {
        height: 900px;
    }
    
}

.newsletter {
    max-width: 500px;
}

.mail {
    text-decoration: underline;
}

#small-newsletter-info {
    font-size: 0.875rem;
    margin-top: 5rem;
    margin-bottom: 0.5rem;
    color: var(--link-color);
}