@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800');

p, form, h1, ul, li{
    margin: 0;
    padding: 0;
}

form{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body{
    margin: 0;
    padding: 0;
    background: url('../img/bg.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Open Sans";
    font-size: 1.2vw;
    height: 100vh;
}

#wrapper{
    position: absolute;
    width: 73.20%;
    height: 100%;
    top: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

#header{
    width: 100%;
    display: flex;
    flex-flow: wrap;
    margin-bottom: 4%;
}

#logo{
    width: 13.8%;
    margin-right: 12%;
    cursor: pointer;
}

#merci{
    width: 49%;
}

#engagements{
    width: 45%;
    text-align: center;
    margin-bottom: 4%;
}

#don{
    width: 80%;
    margin-bottom: 1%;
}

#share{
    color : #FFFFFF;
    font-weight: 600;
    font-size: 1.4vw;
    margin-bottom: 1%;
}

#share a{
    text-decoration: none;
    color: #FFFFFF;
}

#credit{
    width: 100%;
    color: #FFFFFF;
    font-size: 0.8vw;
    text-align: center;
}

#credit a{
    color: #FFFFFF;
}

div img{
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 800px) {
    #wrapper{
        width: 95%;
    }

    #header{
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    #logo{
        width: 20%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 4%;
    }

    #merci{
        width: 90%;
    }

    #share{
        font-size: 3vw;
    }

    #engagements{
        width: 100%;
    }

    #credit{
        font-size: 2vw;
    }
}