* {
    margin: 0;
    pointer-events: none;
} body {
    background-image: url(/img/leafs.png);
    background-color: #002c0f;
    background-repeat: repeat;
    background-size: 100vw;
} img {
    user-select: none;
} h1, h2 {
    font-family: "Mountains of Christmas", sans-serif;
} h3, h4, p {
    font-family: 'League Spartan', sans-serif;
}

h1 {
    font-size: 200px;
} h2 {
    font-size: 120px;
} h3 {
    font-size: 90px;
} h4 {
    font-size: 60px;
} p.big {
    font-size: 40px;
} p.big2 {
    font-size: 50px;
} p.big3 {
    font-size: 70px;
}

a {
    color: #bcffad;
    pointer-events: all;
    user-select: all;
}

header {
    width: 100%;
    height: 100vh;
    text-shadow: 0px 0px 10px #499101;
    color: white;
    background-image: url(/img/sky.png);
    background-position: top;
    background-size: 150vw;
} .header_image {
    width: 100%;
    height: 100.2%;
} .header_grass {
    background: url("/img/grass.png");
    background-repeat: repeat-x;
    background-position: bottom;
    z-index: 9;
} .header_container {
    width: 90%;
    height: fit-content;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} .header_feature {
    margin-left: 10px;
    margin-right: 10px;
    width: max-content;
    text-align: center;

    h1 { 
        z-index: 1000;
    }
}

.article_container {
    width: 100%;
    height: fit-content;
    margin: 0;
    background: linear-gradient(180deg, #005508 5%, rgb(0, 88, 4, 0.5) 10%, rgba(0,0,0,0) 100%);
    
    article {
        width: 80vw;
        height: fit-content;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        color: white;

        div {
            display: block;
            padding: 20px;
            margin: 10px;

            img {
                border-radius: 25px;
            }
        }
    }
}

.final {
    width: 100%;
    height: fit-content;
    text-align: center;
    color: white;

    div.final_inner {
        width: 100%;
        height: fit-content;
        margin: auto;

        div {
            width: 100%;
            height: fit-content;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;

            div {
                width: 33%;
                height: 300px;
                margin: 10px;
                padding: 20px;
                text-align: left;
                margin-top: 100px;
                display: flex;
                flex-direction: row;

                p {
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}

footer {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    font-size: 16px;
    color: white;

    div {
        padding: 40px;
    }
}

@media only screen and (max-width: 1450px) {
    body {
        background-size: 200vw;
    }
    
    div.article_container article {
        width: 100vw;
        margin: 0;
        text-align: center;
        flex-direction: column;

        div {
            margin: 0;
            margin-top: 80px;
            padding: 0;
            img {
                border-radius: 0;
                width: 100vw;
            }

            p {
                font-size: 70px;
                padding: 20px;
            }
        }
    }

    header {
        height: 900px;

        .header_container {
            top: 400px;
        }
    }

    h1 {
        font-size: 14vw;
    }

    .m-hide {
        display: none;
    }

    div.final div.final_inner {
        width: 100%;
        padding: 0;
        padding-top: 60px;
        border-left: none;
        border-right: none;
        border-bottom: none;
        border-radius: 0;

        h4 {
            font-size: 8vw;
        }

        div {
            flex-direction: column;
            text-align: center;
            div {
                display: inline;
                margin: 50px;
                width: 80%;
                
                p {
                    font-size: 70px;
                }
            }
        }
    }

     a {
        text-decoration: none;

        p.big {
            font-size: 60px;
        }
     }
}

@media only screen and (min-width: 1800px) {

}