html, body {
            height: 100%;
        }
body {
    font-family: Arial, sans-serif;
    position: relative;
    color: #333;
    text-align: center;
    padding: 20px;
    /*overflow: hidden;*/
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-size: cover;
    background: url('raclette_montagne_blur.jpg') no-repeat center center fixed;
	background-color: black;
    filter: blur(5px); /* Ajuste cette valeur pour augmenter ou diminuer le flou */
    opacity: 0.8; /* Ajuste cette valeur de 0 (transparent) à 1 (opaque) */
    z-index: -1;
}

.header {
    background-color: rgba(255, 99, 71, 0.7);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.invitation {
    font-size: 1.2em;
    margin: 20px 0;
}

.footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: black;
    position: relative;
    z-index: 1;
	max-width: 600px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}
.image {
	width: 100%;
	max-width: 600px;
	]