@import url(../web-fonts/1942_regular/stylesheet.css);
@import url(../web-fonts/robotto/roboto_light/robotostyles.css);

* {
    box-sizing: border-box;
}

html,body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: gray;
}

img {
    width: 100%;
    height: auto;
}

h2{
    font-family: "1942"; /* fonte crée */
    font-size: 2em;
    letter-spacing: 5px;
    text-transform: uppercase;
    
}

p{
    font-family: "robotto"; 
}

header {
    height: 350px;
    margin-bottom: 32px;
    background-image: url(../images/cities.png) ;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-bottom: solid 5px black;
}

section {
    background-color: maroon;
    margin-bottom: 32px;
}

section article {
    background-color: black;
    color: white;

    float: left;
    overflow: hidden;

    width: 18%;
    height: 150px;
    margin:1%;

    padding: 10px;
}

section article:hover {
    overflow: visible;
    height: auto;
}

/* pour annuler l'effet des flottante sur la section */
section:after {
    content: "";
    display: block;
    clear: both;
}

footer {
    background-color: darkkhaki;
    color: darkred;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

