
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamMedium.ttf') format('truetype');
    src: url('../fonts/Gotham-Black.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/*GLOBAL */
html {
    box-sizing: border-box;
    height: 100%;
}

body {
    background: url("../img/film-solaire-batiment.jpg") 100%;
	font-family: 'Gotham', 'sans-serif';
	font-size: 16px;
	color:#222222;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}


/* HEADER */
/* Ce qui concerne le header et la nav */

/* MAIN */
main {
    box-sizing: border-box;
    padding: 0 15px;
    background-color: white;
    border-top: 5px solid #a51e1e;
    width: 100%;
}
 

h1 {
	font-size:30px;
	text-align:center;
}

img {
    display: block;
    margin: 0 auto;
    max-width:600px;
    text-align: center;
}

p {
    text-align: center;
    margin: 20px;
}

footer {
    background-color: white;
    width: 100%;
     border-bottom: 5px solid #a51e1e;
}

@media only screen and (max-width : 768px) {

	img {
		max-width: 100%;

}