header {
    display: flex;
    align-items: center; /* centre verticalement */
    gap: 30px;           /* espace entre logo et menu */
	margin-bottom: 30px;
}

.logo {
    vertical-align: middle;
}

.important{
    background: #f7f7f7;
    border-left: 4px solid #003366;
    padding: 15px 20px;
    margin: 25px 0;
}


body {
    font-family: Arial, sans-serif;
    max-width: 1500px;
	font-size: 20px;
    margin: auto;
    padding: 20px;
	margin: 0;
    padding: 0;
    background-image: url('/images/background.bmp');
	background-size: auto 100vh;
    background-position: top center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #050302;

    color: #e8dcc0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
	/*text-align: center;*/
}

nav {
    margin-top: 31px; /* mettre après la dorure */
	margin-left: 27px; /* mettre après la dorure */
    text-align: center;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;

    display: inline-block;
    background: rgba(20, 10, 5, 0.85);
    border: 1px solid #9b6b2f;
}

.menu > li {
    display: inline-block;
    position: relative;
}

.menu a {
    display: block;
    padding: 10px 16px;
    color: #d8b46a;
    text-decoration: none;
    font-weight: bold;
}

.menu a:hover {
    background: rgba(120, 70, 20, 0.8);
    color: #fff0c0;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    list-style: none;
    margin: 0;
    padding: 0;

    background: rgba(20, 10, 5, 0.95);
    border: 1px solid #9b6b2f;
    min-width: 160px;
    z-index: 999;
}

.submenu li {
    display: block;
}

.menu li:hover > .submenu {
    display: block;
}

hr {
    display: none;
}

h1 {
    text-align: center;
    color: #f0d28a;
    text-shadow: 2px 2px 4px black;
    margin-top: 45px;
}

p {
    max-width: 900px;
    margin: 20px auto;
    color: #e8dcc0;
    text-shadow: 1px 1px 3px black;
}