
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
}

header {
    background-color: black;
    border-bottom: 3px solid orange;
    height: 50px;
}

.actif{
    color: orange;
}

h1 {
	text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}


nav li {
    margin: 0 1rem;
}


nav a {
    text-decoration: none;  
    color: white;
    font-weight: bold;
}


.image-accueil {
    display: flex;
    justify-content: center; 
    align-items: center;     
    padding: 2rem;
}

footer {
    text-align: center;
    background-color: black;
    border-top: 3px solid orange;
    font-size: 20px;
}

section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

section img {
    ;
}

/* livre section : texte à gauche, image à droite */
.livre-text { order: 1; }
.livre-image { order: 2; }

/* film section : image à gauche, texte à droite */
.film-image { order: 1; }
.film-text { order: 2; }


/* Dans la page CV, on force les sections en simple colonne */
main.cv section {
  display: block;
}
