@charset "utf-8";
/* CSS Document */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 0 20px;
}

.content {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.responsive-image {
    width: 100%; /* Permet à l'image de s'adapter à la largeur du conteneur */
    height: auto; /* Garde les proportions de l'image */
    max-width: 944px; /* Taille originale de votre image */
    display: block; /* Pour éviter tout espace indésirable autour de l'image */
    margin: 0 auto; /* Pour centrer l'image */
}

h1 {
    color: #0056b3;
    margin-bottom: 20px;
}
h2 {
    color: orange;
}
h3 {
    color: green;
}
p {
    font-size: 16px;
    margin-bottom: 10px;
}

ul {
    margin-bottom: 20px;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    background: #0056b3;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: #333;
    color: white;
}
.container {
    /* Vos styles existants pour .container */
}

.ul {
    /* Vos styles existants pour .ul */
}

#menu ul {
    list-style-type: disc; /* Ajoute des puces aux éléments de la liste */
    padding: 0;
}

#menu li {
    margin-bottom: 5px; /* Conserve l'espacement entre les éléments */
    display: block; /* Assure que chaque élément de liste occupe sa propre ligne */
}

#menu a {
    text-decoration: none;
    color: red;
    font-weight: bold;
    /* autres styles */
}
.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    padding-top: 25px;
    height: 0;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}