
/* STYLE HEADER & FOOTER  */

*{
    margin: 0;
}

body {
    font-family: 'Comme', sans-serif;
    color:rgb(99, 10, 182);
    
    margin: 7px;
    padding: 2px;
    }
    
a {
    cursor:pointer;
}
/*   HEADER   */


header{
    display: grid;
    grid-template-areas: 
        "a1 a2 a3"
        "a4 a5 a6"
        "nav nav nav"
    ;
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: auto auto auto;
    flex-wrap: wrap;
    gap: 10px;

    background-image: url("../images_oc/oc23.jpeg");
    background-size: cover;  
    background-attachment: fixed;
    border-radius: 25px;

    font-family: 'Comme', sans-serif;
    color:rgb(99, 10, 182);
}

.a1 {
    grid-area: a1;
    display: flex;

    flex-wrap: wrap;
}

.a1a {    
    width: 68px;
    border-radius: 15px;
    margin: 10px;
}

.a1b {
    width: 72px;
    border-radius: 15px;
    margin: 10px;
}

.a2 { 
    grid-area: a2;
    display: flex;
    align-items: center;
    justify-self: center;
    text-align: center;       
    font-size: 65px;
    font-weight: bold;
    color: rgb(125, 30, 214)
}     

.a3 {
    grid-area: a3;
    justify-self: center;   
    border-radius: 20px;
    border: 2px solid rgb(80, 158, 221);
    box-shadow: 5px 5px 10px rgb(80, 158, 221);
    margin-top: 10px;
}

.a6 {
    grid-area: a6;
    display: flex;
    align-items: center;
    justify-self: center;
    text-align: center;
    font-size: 24px;
    color: white;
    text-shadow: 1px 1px 2px rgb(5, 38, 109), 0 0 5px rgb(10, 67, 131), 0 0 10px rgb(23, 81, 167);
}
    
.a4 {
    grid-area: a4;
    display: flex;
    align-items: center;
    justify-self: center;
    text-align: center;        
    font-size: 30px;
    font-weight: bold;
    color: rgb(9, 153, 141);
}

.a5 {
    grid-area: a5;
    display: flex;
    align-items: center;
    justify-self: center;
    text-align: center;        
    font-size: 45px;
    font-weight: bold;
    color: rgb(125, 30, 214);
}

    /*    NAVIGATEUR    */

nav {
    grid-area: nav;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 15px;
    border: 0.5px solid rgb(95, 185, 238); 
    box-shadow: rgb(95, 185, 238) 1px 1px 12px inset;
    background-color: rgba(217, 235, 245, 0.7);
    padding: 2px 2px 2px 2px;
}

.a8 {
    flex-wrap: wrap;
    border-radius: 15px;
    border: 0.5px solid rgb(95, 185, 238); 
    box-shadow: rgb(95, 185, 238) 1px 1px 12px;
    background-color: rgba(229, 242, 250, 0.7);
    font-weight: bold;
    margin: 3px 3px 3px 3px;
    padding: 4px 40px 4px 40px;
} 


/*   FOOTER   */

   
footer{
    border: 0.5px solid rgb(95, 185, 238); 
    box-shadow: rgb(95, 185, 238) 1px 1px 12px inset;
    background-color: rgba(217, 235, 245, 0.7);
    border-radius: 15px;
    padding: 7px;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    flex-wrap: wrap;  
}

.foot1{
    grid-column: 1/2;
    grid-row: center;
    flex-wrap: wrap;
    justify-self: start;
    align-self: center;
}

.f1 {
    padding: 3px;
    border-radius: 15px;
    border: 0.5px solid rgb(95, 185, 238); 
    box-shadow: rgb(95, 185, 238) 1px 1px 12px;
    background-color: rgba(229, 242, 250, 0.7);
}

.foot2{
    grid-column: 3/4;
    grid-column: end;
    grid-row: center;
    flex-wrap: wrap;
    justify-self: center;
    align-self: center;
}

.f2 {
    padding: 5px 15px 5px 15px;
    border-radius: 15px;
    border: 0.5px solid rgb(95, 185, 238); 
    box-shadow: rgb(95, 185, 238) 1px 1px 12px;
    background-color: rgba(229, 242, 250, 0.7);
}

.page {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page1 {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px 30px;
    border-radius: 15px;
    border: 0.5px solid rgb(95, 185, 238); 
    box-shadow: rgb(95, 185, 238) 1px 1px 12px;
    background-color: rgba(229, 242, 250, 0.7);
    text-decoration: none;
}

        