html, body{

    font-family: Arial;
    display: flex;

    height: 100vh;
    margin: 0;

    flex-direction: column;
}

.top-titre {
    background-color: #001f3f;
    color: aliceblue;
    padding: 20px 40px;
    box-sizing: border-box;
    display: inline-block;
    margin-bottom: 50px;
    width: 100%;
}

h1{
    font-display: auto;
    margin-left: auto;
    margin-right: auto;
}


.Compétence{
    display: flex;
    justify-content: center;
    align-items: top;
    gap: 80px;
    font-family: Arial;
    flex: 1 0 auto;
}

.Schéma{
    display: grid;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}


.page-content {
    flex: 1 0 auto; /* Pousse le footer vers le bas */
}

/* ---- FOOTER ---- */
footer {
    width: 100%;
    background-color: #001f3f;
    padding-bottom: 20px;
}

.contenu-footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* S'adapte aux écrans */
    padding: 0 20px;
    color: aliceblue;
}

.footer-section h3 {
    text-decoration: underline;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style-type: none; /* Enlève les puces */
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-section a {
    color: aliceblue;
    text-decoration: none;
    
}

.footer-section a:hover {
    text-decoration: underline;
}