/* Reset simple */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
   /* background: url('Images/fond.jpg') no-repeat center center fixed; 
    background-size: cover; */
    background-color: rgba(242,228,218,1);
    display: flex;
    flex-direction: column;
    color: black;
}

body {
    font-family: 'Arial', sans-serif;
    color: black;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: transparent;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    filter: blur(5px);
    z-index: -1;
}

a {
    text-decoration: none;
}

/* Header */
header {
    position: relative; /* Nécessaire pour que le pseudo-élément fonctionne correctement */
    width: 90%;
    margin: 5px auto;
    color: white; /* Couleur du texte */
    padding: 30px 20px;
    text-align: center;
}

header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('Images/Banniere.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
    border-radius: 60%;
}

header h1, header h2 {
    color: #FFFFFF;
    font-family: 'Georgia', serif;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.4),
        -2px -2px 4px rgba(0, 0, 0, 0.4),
        3px 3px 6px rgba(0, 0, 0, 0.6),
        -3px -3px 6px rgba(0, 0, 0, 0.6),
        5px 5px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    padding: 0;
    margin-bottom: 2px;
}

header h1 {
    margin-top: 0;
    margin-bottom: 2px;
}

header h2 {
    margin: -10px 0 2px 0;
}

header .logo {
    font-size: 1.5em;
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: #333333;
}

/* Main */
main {
    flex: 1;
    padding: 30px 20px;
    max-width: 1200px;
    margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
    html, body {
        background-attachment: scroll; /* Le fond défile avec la page */
    }
	 .logo h1 {
        font-size: 12vw;
    }

    .logo h2 {
        font-size: 8vw;
    }
	
}
