/*----------------------------------------------------------------------------
    Generic
----------------------------------------------------------------------------*/

html {
    box-sizing: border-box;
}

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

/*------------------------------------------------------------------------------
   Element - Base
------------------------------------------------------------------------------*/

body {
    font-family: 'Open Sans', helvetica, sans-serif;
    background: white;
}

.wrapper {
    width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

/*------------------------------------------------------------------------------
   Element - Typographie
------------------------------------------------------------------------------*/

h1 {
    font-size: 60px;
    color: rgba(231, 76, 60, 1);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 24px;
    color: rgba(52, 152, 219, 1);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}


/*------------------------------------------------------------------------------
   Composantes / Modules
------------------------------------------------------------------------------*/

/* header */
header {
    padding: 20px 0;
    background-color: rgba(192, 57, 43, 1);
}

/* Section */
section {
    padding: 60px 0;
}

section .wrapper {
    display: flex;
}

section img {
    margin-right: 30px;
}

/* footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(41, 128, 185, 1);
}