/*------
BASE
 ------*/
html
{
    box-sizing: border-box;
}

*, *:before, *:after
{
    box-sizing: inherit;
}

.wrapper
{
    max-width: 1440px;
    margin: 0 auto;
}

h1,h2,h3
{
    font-weight: 700;
}

h1
{
    font-size: 96px;
}

h2
{
    font-size: 48px;
}

h3
{
    font-size: 20px;
}


body
{
    font-family: "Quicksand", sans-serif;
    font-size: 20px;
    font-weight: 500;

    background-image: url("../image/backgroundFade.png");
    background-color: #F3F7F0;
    background-position: center;
    background-repeat: repeat-y;
}

.header
{
    background-color: #A93F55;
    color: #F3F7F0;
}

.header .wrapper
{
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero
{
    background-image: url("../image/hero.jpg");
    background-size: cover;
    background-position: center;
    color: #F3F7F0;
}

.hero .wrapper
{
    height: 770px;
    display: flex;
    flex-direction: column-reverse;
    padding: 50px 0;
}

article .wrapper
{
    display: flex;
    flex-direction: column;
    padding: 50px;
    gap: 25px;
}

p
{
    margin-left: 20px;
    line-height: 120%;
}