/* Polices d'Écriture du Site */
@font-face {
    font-family: "Roboto";
    src: url('polices\Roboto\Roboto-Regular.ttf');
}

body {
    min-width: 900px;
    align-content: center;
    margin: auto;
}

/* Header Style */
header {
    text-align: center;
    padding: 20px;
    color: #766b76;
    background-color: #e5e7e8;
    font-family: "Roboto";
    font-style: bold;
}

h1 {
    color: #2c2c2e;
    font-size: larger;
    text-align: center;
}


/* Navigation Menu Style */
nav {
    text-align: center;
    word-spacing: 50px;
    padding: 20px;
    background-color: #e5e7e8;
}

nav a {
    color: #2c2c2e;
    text-decoration: none;
    font-size: larger;
    font-style: italic;
}

 main {
    font-family: "Roboto";
}
.title p {
    text-align: center;
}

#projet-grille {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    grid-auto-rows: minmax(70px, auto);
    grid-gap: 10px;
}
#projet-grille a {
    text-decoration: none;
}
#projet-grille h3 {
    text-align: center;
    color: black;
}

.projet {
    background: black;
    border-radius: 5px;
    color: rgb(0, 0, 0);
    padding: 30px 25px;
    transition: all .3s;
    text-shadow: 0 0 15px black;
}
.projet:hover {
    opacity: 0.5;
}


.projet-a {
    background: center url('../projets/CarWashArras/images/logo.png');
    background-size: cover;
}
.projet-b {
    background: center url('../projets/Netflix/images/netflix.jpg');
    background-size: cover;
}
.projet-c {
    background: center url('../images/siteweb.jpg');
    background-size: cover;
}
.projet-d {
    background: center url('../images/siteweb.jpg');
    background-size: cover;
}
.portfolio {
    width: 1000px;
    margin: 0 auto;
}

@media all and (max-width: 1130px) {
    .portfolio {
        width: 700px;
    }
}
@media all and (max-width: 730px) {
    .portfolio {
        width: 100%;
    }

}
@media all and (max-width: 500px) {
    .portfolio {
        width: 100%;
    }

}