body {
	margin:5;
	background-color: lightblue;
	color: black;
}
#entete {
	display: flex;
	justify-content: center;
	align-items: center;
}
#logo {
	max-height: 80px;
	max-width: 120px;
}
#slogan {
	display:inline-block;
	padding:10px;
	
}
h1 {
	color: green;
	font-size:min(1.5rem, calc(100vw/25));
}
div.menu {
	background-color: lightgray;
	color: green;
}
a.menuitem {
	display: inline-block;
	text-decoration: none;
	color:inherit;
	width:100px;
	padding:10px;
}
h2 {
	
}
div.contents {
	display:flex;
	flex-flow:row wrap;
	justify-content:space-around;
	align-items:center;
	padding:10px;
	border: solid 2px green;
	background-color: inherit;
	color: black;
}
div.content {
	margin:10px 20px;
	padding:5px;
	border: solid 2px green;
}
img.thumbpaysage {
	max-width: 50vw;
	height:30vw;
	max-height:250px;
	border-radius:10px;
}
img.thumbportrait {
	max-height: 35vh;
	border-radius:10px;
}
.contents p {
	color:black;
}
.content.p.strong {
	color:green;
}
