/* ==========================================================================
   Fichier CSS3 RESET
   ========================================================================== */
   
/*supprime toutes marges*/
*,
body.site {
padding: 0;
margin: 0;
}

/* supprime toutes bordures */
fieldset,img { border : 0; }

/* supprime les déco des liens */
a:link, a:visited {
text-decoration: none;
}


/* ==========================================================================
   Style Base
   ========================================================================== */
  
 html, body {
	 height: 100%;
 } 
  
body {
    font-family: 'Montserrat', Arial, Sans-Serif;
    font-size: 1.2rem;
	line-height: 2.6rem;
    color: #252F38;
	
    background-image: url(../img/jaclyn-moy-ugZxwLQuZec-unsplash.jpg);
    background-repeat: no-repeat;
}

header, div.wrapper, footer {
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 10px;
}
header {
	padding: 4%;
}

::-webkit-selection { 
    color: #FFF;  
    background: #C7002D; 
}
::-moz-selection { 
    color: #FFF;  
    background: #C7002D; 
}
::selection { 
    color: #FFF;  
    background: #C7002D; 
} 

a, a:hover, a:focus {
	font-weight: bold;
    color: #C7002D;
}

h1, h2, h3 {
	color: #252F38;
}

h1 {
    display: block;
    margin: 1rem auto;
    text-align: center;
}
h1 img {
	width: 20%;
}

h2, h3 {
    display: block;
    text-align: center;
    position: relative;
    top: -1000px;
    overflow: hidden; 
}
h2 {
    text-transform: uppercase;
    font-size: 1.4rem;
	line-height: 1.6rem;
    text-align: center;
}
h3 {
    text-transform: initial;
    font-size: 1.2rem;
	line-height: 1.4rem;
    display: block;
    
}

article {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

section {
    flex: 1 1 0;
    margin-right: 16px;
}

footer {
    display: block;
    margin: 20px auto;
    bottom: 0;
    text-align: center;
}



@media (max-width: 768px) {

	h1 img {
		width: 40%;
	}
    
    article {
        display: block;
    }
    
}