/* style.css */
html {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
    background-color: #f4f4f9;
    overflow-x: hidden;
}


header {
    background-color: #0056b3;
    color: #fff;
}

header .content {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}



header .logo h1 {
    margin: 0;
}



main {
    background-color: #fff;
    flex: 1;
    position: relative;
}

main > section > .content {
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #0056b3;
    color: #fff;
}






.button {
    background-color: #0056b3; /* Couleur bleu du site */
    color: #fff; /* Texte blanc */
    border: none;
    padding: 0.75rem 1.5rem; /* Taille confortable */
    font-size: 1rem; /* Taille de texte lisible */
    font-weight: bold; /* Texte en gras */
    border-radius: 5px; /* Coins arrondis */
    cursor: pointer; /* Curseur en forme de main */
    transition: background-color 0.3s, transform 0.2s; /* Transitions douces */
    display: block;
}

.button:hover {
    background-color: #003f80; /* Bleu plus foncé au survol */
}

header .logo a{
    text-decoration: none;
    color: white;
}
