body {
    font-family: Trebuchet MS, sans-serif;

    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Couleur rappelant la douceur  */
	color: #7C4C53;
}

header {
    background-color: #EEE6D8; /* Couleur rappelant la terre d2b48c */
    padding: 10px;
    text-align: center;
	

}

header h1 {
    margin: 0;
    font-size: 5em;
	font-weight:bold;
	color: #392E2C;
	font-family: Garamond, sans-serif;
	
}

header h2 {
    margin-top: 5px;
    font-size: 1.2em;
	color: #392E2C;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333; /* Couleur du texte pour les onglets */
}

nav ul li a:hover {
    color: #666; /* Couleur du texte au survol */
	font-weight:bold;
}

/* body vignette {
    margin-top: 5px;
    font-size: 1.2em;
	color: #EEE6D8; */
}

footer {
	
	font-size: 0.5em;
	vertical-align: baseline;
	vertical-align: text-bottom;
}
.instagram-logo:hover {
    opacity: 0.7; /* Réduit l'opacité au survol */
}

.instagram-logo img {
    width: 30px; /* Ajuster la taille du logo Instagram selon vos besoins */
    height: auto;
}

#boxshadow1 {
    width: 300px;
    height: 100px;
    padding: 15px;
    margin-bottom: 30px;
    background-color: #yellow; 
    box-shadow: 10px 10px;
	
	
	.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Vérification des champs */
input:invalid,
textarea:invalid {
    border-color: red;
}

input:valid,
textarea:valid {
    border-color: #ccc;
}