
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #ddd8d8;
    color: #BC002D;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* HEADER  */

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 60px;
    background: #201f1f;
    color: #BC002D;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-variant: small-caps;
    font-size: 1.5rem;
    font-weight: bold;
    gap: 3px;
}

header img{
    height: 100px;
}
.label{
    margin-top: -5px;
}

header a{
    color: #BC002D;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-variant: small-caps;
    font-size: 1.2rem;
}

/*FOOTER */

footer{
    margin-top: 40px;
    padding: 25px 50px;
    background: #1f1f1f;
    color: #BC002D;

    display: flex;
    align-items: flex-start;
    gap: 20px;
}

footer > div{
    flex: 1;
    min-width: 0; 
}

footer h3{
    font-size: 1rem;
    margin-bottom: 12px;
    text-decoration: underline;
}

ul{
    list-style-type: none;
}
footer iframe{
    width: 100%;
    height: 250px;
    border: 0;
}
footer > div:nth-child(3){
    margin-left: 300px;
}
/* Réseaux sociaux */

.social{
    text-align: center;
}

.icons{
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

.icons img{
    height: 40px;
    width: auto;
    transition: transform 0.2s;
}

.icons img:hover{
    transform: scale(1.15);
}