@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Futura";
}


body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.conteneur {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* HEADER */

header {
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav ul li a {
    text-decoration: none;
    color: #333333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #7e7e7e;
}


/* Titres */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Corps */
body, p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}


/* FOOTER */

footer {
    padding: 20px 0;
    text-align: center;
    background-color: #333333;
    color: #ffffff;
}