/* Fanny Riedo, 29.04.2024, style N&B */
html {
	height: 100%;
	min-height: 100%;
}

body {
	font-family: "Times New Roman";
	display: flex;
	height: 100%;
}

.barre {
	flex-basis: 20%;
	display: flex;
	flex-direction: column;
}

.barre .noir, .blanc {
	flex-basis: 25%;
}

.illustration{
	flex-basis: 50%;
	display: flex;
	align-items: stretch;
}

.illustration img{
	object-fit: cover;
}

.contenu {
	flex-basis: 80%;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.contenu * {
	flex-basis: 50%
}

.noir {
	background-color: black;
	color: white;
	align-content: center;
}

.blanc {
	background-color: white;
	color: black;
	align-content: center;
}

ul {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}