/* General */
* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;

}

main {
    background-color: #f6f6f6;
}

header {
    margin-top: 10px;
}
a, p, h2 {
    font-size: 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;

}

nav {
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #000000;
    display: flex;
    background-color: white;
    flex-direction: row;
    justify-content: space-around;
}

/* Header */ 
.logo {
    display: flex;
    justify-content: flex-start;
}

.renvoi a {
    width: 120px;
    color: #000000;
    display: flex;
    align-items: center;
}

.renvoi a:hover {
    text-decoration: underline;
}


/* Section img */ 

.img_display {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
}

.img_display h2 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 35px 0;
    background-color: #f6f6f6;

}

#img_container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
padding-left: 30%;
padding-right: 30%;
}

.img_tile img {
    width: 223px;
    height: 222px;
    display: flex;
    margin: 15px;
} 

/* Contact */ 

.contact {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact p {
    font-size: 23px;
    text-align: center;
    line-height: 2;
    margin-bottom: 5px;
    font-weight: 100;
}
.button_contact {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 35px;
    padding: 6px;
    width: 100px;
    height: 40px;
    color: #000000;
    border: 1px solid#000000;
    background-color: #ffffff;
    border-radius: 20px;
}

.button_contact i {
    color: #000000;
    font-size: 22px;
}

.button_contact i:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
}

/* Footer */ 
.footer_link {
height: 130px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
border-top: 1px solid #000000;
}

.footer_link p {
    font-size: 20px;
}
.social {
    width: 200px;
    display: flex;
    justify-content: space-around;

}
.social i {
    font-size: 30px;
    text-decoration: none;
    color: #000000;
}

.social i:hover {
    transform: rotate(360deg);
    transition: 1s;
}

/* Media Query */ 

@media (max-width: 1180px) {
    #img_container {
        padding: 0%;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .img_tile {
        display: flex;
        justify-content: center;
    }

    .img_tile img {
        width: 70%;
        height: 90%;
        margin: 0;
    }
}