*,
*::after,
*::before {
    box-sizing: border-box;
}

body{
    margin: 0;
}

.navigation {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;

}

header {
    background-color: #000000;
}

header nav a {
    color: rgb(255, 255, 255);
}



a {
    text-decoration: none;
    color: black;
    font-size: 1.3rem;
    padding: 10px;
    outline: none;

}

a:hover {
    text-decoration: underline;
}

.lineh {
    display: flex;
    align-items: center;
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.line {
    width: 100%;
    border-bottom: 1px solid #000;
}

h2 {
    font-size: 1.5rem;
    margin-left: 10px;
    margin-right: 10px;
}


SELECT {
    height: 100px;
    font-size: 1rem;
    color: #C28B15;
    background-color: #fff;
    box-shadow: 2px 2px 5px #000000;
    grid-area: filtre;
    cursor: pointer;
}


.valide {
    height: 100px;
    font-size: 1rem;
    padding-right: 50px;
    padding-left: 50px;
    text-decoration: none;
    color: #C28B15;
    background-color: #ffffff;
    border: #C28B15 solid 1px;
    box-shadow: 2px 2px 5px #000000;
    grid-area: val;
    cursor: pointer;

}



.valide:hover {
    color: white;
    background-color: #C28B15;
}

a img:hover{
    transform: scale(1.06);
}

.actu{
    color:#C28B15;
}

a:focus {
    outline: 2px solid #C28B15;
   
}



@media screen and (width>=600px){
   
    .valide{
        font-size: 1.5rem;

    }
    
}

@media screen and (width>=1000px) {
    header {
        width: 90%;
        margin: auto;

    }

}

button,
a{
    min-width: 44px;
    min-height: 44px;
}