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

#lead {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;  /* Centrer horizontalement */
    align-items: center;      /* Centrer verticalement */
}

#lead img {
    max-width: 100%;  /* Pour éviter que l'image dépasse de l'écran */
    height: auto;
}

h1 {
    font-family: "Rubik Glitch", system-ui;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
}

main {
    margin: 0;
    padding: 0;
    /* width: 100vw;
    height: 100vh; */
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.secondHeader{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    /* padding: 10px;
    background-color: #333;
    color: white; */
}

.title {
    font-size: 5rem;
    font-weight: bold;
    text-align: center;
}

section {
    padding: 30px;
    text-align: left;
    border-radius: 8px;
}

@media (max-width: 768px) {
    main {
        padding: 10px;
    }

    section {
        padding: 20px;
    }
}

.fixed-image {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 300px; /* Adjust the size as needed */
    height: auto;
    z-index: -1;
}
