<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">header{
    padding: 200px 0px 100px 0px;
}
header p{
    font-weight: 600;
    line-height: 50px;
    color: var(--color-black);
    font-size: 30px;
}
header small{
    color: #fff;
    background-color: var(--color-tertiary);
    width: fit-content;
    padding: 2px 15px;
    border-radius: 30px;
}
header img {
    filter: drop-shadow(-30px 30px 0px #17B35F);
    border-radius: 0px 150px 150px 150px;
}

@media(max-width: 991px){
    header{
        padding: 120px 0px 0px 0px;
    }
    header img {
        margin: 0 auto;
        display: block;
    }

    header p {
        line-height: 35px;
        font-size: 20px;
    }

    header img {
        filter: drop-shadow(-10px 10px 0px #17B35F);
        border-radius: 0px 50px 50px 0px;
    }
    #story .row{
        flex-direction: column-reverse
    }
}</pre></body></html>