main {
    width: 100%;
    padding: 30px 0;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: cornsilk;
    overflow-x: hidden;
}

h1,h2,h3,h4 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1 {
    text-align: center;
}

h2 {
    font-size: 1.3em;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

.bouton {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

    text-align: center;
    justify-content: center;
    font-size: 18px;

    padding: 10px 40px;
    background-color: #ff8eb1;
    border-radius: 8px;
    color: white;
    font-weight: 1000;
    border: 1px solid #ff8eb1;

    text-decoration: none;
    transition: all 0.4s ease;
}

.bouton:hover {
    background-color: white;
    color: #ff8eb1;
    border-radius: 8px;
}

.form-container {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px #00000026;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 2px 8px #00000015;
}

.nav-liens {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-liens a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

footer {
    width: 100%;
    margin-top: 50px;
    padding: 20px 30px;
    background-color: white;
    box-shadow: 0 -2px 8px #00000015;
}

.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}

@media (max-width: 800px) {
    .burger { display: block; }

    .nav-liens {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px 30px;
        box-shadow: 0 4px 8px #00000015;
        gap: 20px;
        z-index: 100;
    }

    .nav-liens.open { display: flex; }
}
