*{
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
}
header{
    background-color: #C6AC8F;
    font-size: 22px;
    display: flex;
    align-items: center;
    height: 8vh;
    justify-content: space-between;
    position: sticky;
    z-index: 30;
    top: 0;
    padding: 20px;
}
footer{
    color: #000;
    background-color: #c3a991;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    height: 8vh;
}
header>div{
    display:flex;
    align-items: center;
    gap: 30px}
a{
    text-decoration: none;
    color: #fff;}
#who,#production{
    min-height: 92vh;
    scroll-margin-top: 8vh;
}

#accueil>.bg-image{
    background-image:url("../img/accueil.jpg");
    filter: blur(6px);
    height: 92vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#accueil>.bg-text{
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    border: 3px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}
#who{
    background-color: #5E503F;
}
#production{
    background-color: #4d402e;
}

.title{
    display: flex;
    padding: 40px;
    justify-content: center;
    font-size: 24px;
}
.flex{
    padding-left: 5vw;
    padding-right: 5vw;
    padding-bottom: 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.centrer{
    display: flex;
    justify-content: center;
    padding: 20px;
}
.tableau{
    display: flex;
    justify-content: center;
    gap: 10vw;
    flex-wrap: wrap;
}
.projet{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:1vh;
    width: 20vw;
    height: 20vh;
}
.projet>img{
    height: 10vh;
    width: 6vw;
}
body > header > div:nth-child(2) > a > img{
    height: 5vh;
}
#who>.flex>div>img{
    height: 600px;
    width: 400px;
}
.txtwho{
    max-width: 50vw;
}
.subtitle{
    font-size: 20px;
}
.txtwho>a{
    position: absolute;
    transform: translate(0,30px);
    margin-top: 20px;
    font-size: 20px;
    border-radius: 10px;
    padding: 10px;
    background-color: #C6AC8F;
    transition-duration: .3s;
}
.txtwho>a:hover{
    box-shadow: 10px 5px 5px #b59b7e;
}
.projet:hover{
    cursor: pointer;
}
#dev{
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 2vh 15vw;
    font-size: 18px;
}
.titledev
{
    font-size: 24px;
}
.rendu{
    display: flex;
    flex-direction: column;
    gap: 5vh;
}
.renduflex>img
{
    height: 50%;
    width: 50%;
}
.renduflex{
     display: flex;
     align-items: center;
     gap: 10vw;
}
.renduflex>div{
    font-size: 22px;
}
#dev > div.rendu > div:nth-child(1) > a{
    display: flex;
    width: fit-content;
}
.size{
    height: 50%;
    width: 50%;
}