:root {
    /* brown */
    --brown: #5c421f;
    --orange: #bc703c;
    --blue: #c1e0d7;
    --yellow: #c99a3d;
    --hero: #f2eee4;
    --text: #ffc54d;
    --white: #ffffff;
}
* {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: transparent;
    outline: none;
}
.yellow {
    color: var(--yellow);
    font-weight: 600;
}
.orange {
    color: var(--orange);
    font-weight: 600;
}
h2 > span.green {
    color: var(--brown);
    font-family: hwt-arabesque, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
}
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}
/* Definer fadeIn animationen */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.bold {
    font-weight: 600;
}
a.button {
    font-family: hwt-arabesque, sans-serif;
    letter-spacing: 1.5px;
    font-weight: 200;
    font-style: normal;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 30px;
    font-weight: 400;
    width: 420px;
    min-width: 320px;
    text-align: center;
}
a.yellow {
    background-color: var(--yellow);
}
a.brown {
    background-color: var(--brown);
}
div > div.flexwrapper > div > p > a {
    text-decoration: underline;
    color: var(--white);
}
body {
    background-color: var(--white);
    color: var(--black);
}
p, li {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0px;
    color: var(--white) !important;
}
p > span.underline {
    text-decoration: underline;
}
h1,h2 {
    font-family: hwt-arabesque, sans-serif;
    letter-spacing: 1.5px;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    line-height: 64px;
    color: var(--white);
}

h3 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: -15px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px !important;
}

nav > a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--brown);
    font-size: 36px;
    line-height: 30px;
    letter-spacing: 0.5px;
    font-family: hwt-arabesque, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}
section {
    margin: 40px;
    padding: 0;
}
section#hero {
    padding: 0;
    margin: 0;
    position: relative;
    background-color: var(--hero);
    padding-bottom: 40px;
}
.backdrop-hero img {
    width: 50%;
    height: auto;
    margin: 60px auto 30px auto;
    display: block;
}
section#intro {
    padding: 40px 40px 20px 40px;
    background-color: var(--brown);
    color: white !important;
    background-image: url('section1.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 400px 400px;
    background-blend-mode: darken;
    background-position: top 60px right 60px;
    border-radius: 30px;
}
section#howto {
    padding: 40px 40px 20px 40px;
    background-color: var(--orange);
    color: white !important;
    background-image: url('section2.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 400px 400px;
    background-blend-mode: darken;
    background-position: top 60px right 60px;
    border-radius: 30px;
}
section#links {
    padding: 20px;
    background-color: var(--blue);
    color: white !important;
    border-radius: 30px;
}
section#faq {
    padding: 40px 40px 20px 40px;
    background-color: var(--brown);
    color: white !important;
    background-image: url('section3.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 400px 400px;
    background-blend-mode: darken;
    background-position: top 60px right 60px;
    border-radius: 30px;
}

.content {
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.flexwrapper {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    gap: 40px;
}
.flexwrapperbutton {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.flexwrapper > div {
    width: 500px;
}

footer {
    margin-bottom: 100px;
    margin-top: 70px;
}


footer > img {
    width: 130px;
    margin: 0 auto;
    display: block;
}
footer > p {
    text-align: center;
    color: var(--brown) !important;
}
footer p span.bold {
    font-family: hwt-arabesque, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    font-weight: 600;
    color: var(--text) !important;
}
@media (max-width: 1030px) {
    a.button {
        font-size: 16px;
        width: 300px;
        min-width: 0;
        display: block;
        border-radius: 10px;
        display: block;
    }
    .flexwrapperbutton {
        display: block;
        display: flex;
        justify-content: center;
    }
}
@media(max-width: 800px) {
    
    .backdrop-hero img {
        width: 80%; 
        height: auto;
        margin: 50px auto 20px auto;
        display: block;
    }
    nav > a {
     
        font-size: 22px;
    }

    section {
        margin: 20px;
    }

    section#intro,
    section#howto,
    section#faq {
        padding: 150px 0px 10px 0px;
        background-position: top 40px center;
        background-size: 320px 320px;
    }
    
    section#links {
        padding: 10px 0px 10px 0px;
    }
    
    h2 {
        font-size: 32px;
        line-height: 36px;
        
    }
    a.button {
        font-size: 11px;
    }
    .flexwrapper {
        display: block;
    }
    .flexwrapper > div {
        width: 100%;
    }
    
    .content {
        margin: 0 auto;
        display: block;
        width: 85%;
        padding: 20px;
    }

    
    .flexwrapperbutton {
        display: flex;
        margin: 0 auto;
        justify-content: space-between;
    }
    footer p span.bold {
        font-size: 26px;
        letter-spacing: 1.5px;
    }

}