/* FONT */

@font-face {
    font-family: "bronco";
    src: url(font/BroncoPersonalUse.ttf) format("truetype");
}

/* ID */

#contact {
    border: 1px black solid;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
}

#logo {
    width: 125x;
    height: 125px;
    margin-top: 30px;
}

#project {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

}

/* #divProjects {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    margin: 15px auto;
    
} */

/* CLASS */

.separator {
    width: 40px;
    height: 1px;
    margin: 15px auto;
    display: block;
    background-color: #999999;
}

.container {
    width: 80%;
    margin: auto;
}

.pictures {
    width: 400px;
    height: 266px;
    overflow: hidden;
    margin-bottom: 15px;
}

.project {
    width: 400px;
    margin: 30px;
    display: inline-block;
    background-color: white;
    padding-bottom: 15px;
    border: 0px solid black;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.project:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    transition: 0.3s;
}

.project img {
    min-width: 400px;
    height: 266px;
}

.project .dateProject {
    font-size: 0.7em;
}

.project span {
    display: block;
    text-transform: uppercase;
}




/* HTML */

* {
    box-sizing: border-box;
}

header {
    text-align: center;
    color: white;
    background-color: #1d1d1d;
    padding-bottom: 30px;
    margin-bottom: 0;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #F4F7f6;
    margin: 0;
}

nav {
    text-align: center;
    background-color: white;
    box-shadow: 0px 3px 1px -1px rgba(0,0,0,0.5);
    font-size: 1.1em;
    padding: 15px;
}

h1 {
    font-family: "bronco", Arial, sans-serif;
    margin-top: 0;
    padding-top: 30px;

}

h2 {
    font-family: "Open Sans", "bronco", sans-serif;
    font-size: 1.5em;
    margin: auto;
}

h3 {
    font-size: 1.5em;
    text-transform: uppercase;

}

h3:before{
    content: "« ";
    color: grey;
}

h3:after{
    content: " »";
    color: grey;
}


section {
    text-align: center;
    margin-top: 50px;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
    display: inline;
    margin: 10px;
}

li:hover {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: black;
}

iframe {
    width: 80%;
    height: 600px;
    

}

footer {
    background-color: #1d1d1d;
    color :white;
    text-align: center;
    padding: 15px;
    
}


/*MEDIA*/
@media all and (max-width: 1000px){
    .project { width: 100%; margin: 15px auto;}
    .project img { width: 100%; height: auto; min-width: auto;}
    .project .pictures {width: 100%; height: auto;}
    #sectionProjectImg {width: 100%; height: auto; min-width: auto; border: 0px solid black; border-radius: 15px;}
    header h2 {width: 90%;}
    iframe {width: 100%;}
}




