/* =============================================================================
                VARIABLES
============================================================================= */
:root{
    --color-header: #F48A88;
    --color-main: #EFECC1;
    --color-border: #488948;
    --color-footer: #A34948;
    --color-white: white;
    --color-black: black;
}
/* =============================================================================
                MODIFICATIONS DES PARTIES GENERALES
============================================================================= */
html, h1, h2, body, header, footer{
    margin: 0;
}
body{
    font-family: Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4{
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}
.flex{
    display: flex;
}
.center_txt{
    text-align: center;
}
/* =============================================================================
                MODIFICATIONS DE LA PARTIE "HEADER"
============================================================================= */
header{
    display: flex;
    align-items: center;
    background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    border-bottom: black solid 2px;
    width: 100%;
}
header h1{
    padding-left: 30px;
    font-size: 50px;
}
header>a>img{
    padding-left: 20px;
}
header>div{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login{
    margin: 0;
    padding: 10px 20px;
    margin-right: 30px;
    color: black;
    background-color: white;
    border: black solid 2px;
    border-radius: 5px;
}
.login:visited{
    text-decoration: none;
}
.login:link{
    text-decoration: none;
}
.login:hover{
    text-decoration: underline;
}
.login:active{
    text-decoration: none;
}
/* =============================================================================
                MODIFICATIONS DE LA PARTIE "PRINCIPALE"
============================================================================= */
#W_A_W{
    margin-top: 30px;
    font-size: 30px;
}


.container{
    display: flex;
}
.big_left, .big_right{
    max-width: 15%;
}
.lil_left, .lil_right{
    max-width: 5%;
    background-color: purple;
}



main{
    max-width: 60%;
    background-color: var(--color-main);
    padding-left: 10px;
    padding-right: 10px;
}
#presentation_1{
    padding-right: 15px;
}
/* =============================================================================
                MODIFICATIONS DE LA PARTIE "SECTIONS"
============================================================================= */
main>section{
    /* padding-top: 100px; */
}
.formulaire{
    padding-bottom: 20px;
}
.etude{
    padding: 10px 20px;
    color: black;
    background-color: white;
    border: black solid 2px;
    border-radius: 5px;
}
/* =============================================================================
                MODIFICATIONS DE LA PARTIE "FOOTER"
============================================================================= */
footer{
    color: var(--color-white) ;
    background-color: var(--color-footer);
    display: flex;
    justify-content: space-between;
}
footer section{
    max-width: 50%;
}


