main {
    background-image: url(../src/texture.png);
}

.mainwrap {
    padding-inline: 2em;
    padding-top: 10em;
    max-width: 1200px;
    margin-inline: auto;
    
    display: flex;
    flex-direction: column;

}

section {
    max-width: 65ch;
    margin-inline: auto;
    margin-bottom: 3em;
}

h1 {
    font-size: var(--fs-xxxl);
    line-height: 1;
    margin-bottom: 0;
}
h2 {
    font-size: var(--fs-xxl);
    line-height: 1.1;
    margin-bottom: 0;
}
p {
    font-size: var(--fs-base);
    line-height: 1.5;
}

.CTA {
    margin-bottom: 5em;
}

button {
    border: none;
    border-radius: 16px;
    padding: 1em;
    font-weight: bold;
    background-color: var(--accent);
    border: solid 2px var(--accent);
    color: var(--primary);
    font-size: var(--fs-base);
}

button:hover {
    cursor: pointer;

    box-shadow: 0 0 24px var(--accent);
    transition: box-shadow 0.2s ease;
}

.headline{
    h1 {
        color: transparent;
        background-image: linear-gradient(155deg, var(--accent) 50%, var(--primary));
        background-clip: text;
        padding-bottom: 6px;
    }
}