html {
    margin: 0;
    padding: 0;
}

body {
    padding: 0;
    margin: 0;
    font-family: Pridi, sans-serif;
    background-image: url("../images/background.png");
    background-size: cover;
    background-attachment: fixed;
}

header {
    text-align: center;
    width: 90vw;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

main {
    padding: 0;
}

main > p {
    font-size: clamp(1.5em, 1.33333vw, 1.8em);
    padding-left: 1em;
    padding-right: 1em;
}

header img {
    width: 100%;
    height: auto;
}

h2 {
    text-align: center;
    font-weight: 500;
}

p {
    text-align: center;
}

.teaser h2 {
    margin: 0;
    font-size: clamp(1.5em, 1.33333vw, 1.8em);
}

.teaser p {

}

.teaser {
    background-color: transparent;
    /* #b8348a */
    background-image: url("../images/teaser-background.png");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    color: white;
    height: 13em;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    margin: 5em 0;
}

.teaser p {
        font-size: clamp(1em, 1vw, 1.3em);
}

.teaser a {
    color: white;
    border-bottom: 2px solid white;
    transition: all .5s;
    text-decoration: none;
}

.teaser a:hover {
    border-color: transparent;
}