/* * {
	transition: background-color 300ms ease, color 300ms ease;
}*/
@font-face {
    font-family: AgenorNeue;
    src: url("../fonts/AgenorNeue-Regular.ttf") format("truetype");
}

html, body {
	background-color: rgba(90, 86, 86, 1.0);
	/*color: rgba(33, 37, 41, 1);*/
	color: rgb(255,255,255);
	font-family: "AgenorNeue", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 16px;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

div#header{
  position: fixed;
  top: 0;
  width: 100%;
  height: 3rem;
}

div#content{
  display: flex;
  position: fixed;
	justify-content: center;
	border-top: solid 1px rgb(255,255,255);
	border-bottom: solid 1px rgb(255,255,255);
  top: 3rem;
  bottom: 3rem;
  width: 100%;
	scrollbar-gutter: stable both-edges;
  overflow: auto;
}

div#footer{
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 3rem;
}

h1, h2, h3 {
	margin: 5px;
	color: rgb(216,216,216);
	text-decoration: underline;
	text-align: center;
}

button {
	background-color: rgb(51, 122, 183);
	border: 2px solid rgb(151, 178, 201);
	border-radius: 4px;
	color: rgb(255,255,255);
	font-size: 1.2rem;
	margin:10px;
	padding:8px;
	cursor: pointer;
}

button:hover:not([disabled]) {
	font-size:1.3rem;
}

button:disabled,button[disabled]{
	opacity: 0.6;
	cursor: default;
}

.bloc {
	width: 80vw;
	background-color: rgb(37,36,34);
	color: rgb(216, 216, 216);
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px;
	margin-bottom: 10px;
	text-align: center;
	border: 1px solid rgb(221,221,221);
	border-radius: 4px;
	padding: 4px;
	box-shadow: 3px 3px 3px 3px rgba(151,143,143,0.6);
}

.contourBloc {
	border: 1px solid rgb(221,221,221);
	border-radius: 4px;
	padding: 4px;
	margin-bottom: 5px;
}

/* Liste des séjours */
div.listeVignettes {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-around;
	text-align:center;
	margin:10px;
}
.Vignette {
	display: inline-block;
	background-color: rgb(206,119,23);
	border: solid 4px rgb(255,255,255);
	box-shadow: 5px 5px 10px 5px rgba(0,0,0,0.6);
	margin:10px;
	padding: 4px;
	cursor: pointer;
}
.Vignette:hover {
	border: solid 4px rgb(128,128,128);
}

/* Liste des appartements */
div#ListeAppartements {
	display: flex;
	flex-direction: column;
	align-items: center;
}

div#ListeAppartements>div {
	width:80vw;
	background-color: rgb(37,36,34);
	color: rgb(216, 216, 216);
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px;
	margin-bottom: 10px;
	text-align: center;
	border: 1px solid rgb(221,221,221);
	border-radius: 4px;
	padding: 4px;
	box-shadow: 4px 4px 4px 4px rgba(0,0,0,0.6);
}

div#ListeAppartements>div:hover {
	box-shadow: 4px 4px 4px 4px rgba(0, 0, 0,1.0);
}

/* Définition de la page des participants */
div#ListeParticipants>div#Participants>div {
	background-color: rgb(37,36,34);
	border-radius: 8px;
	margin-bottom: 10px;
}

/* Définition de l'apparence du header */
div#navbar {
	position: fixed;
	width: 100vw;
	top:0px;
	background-color: rgba(90, 86, 86, 1.0);
	color: rgb(216,216,216);
	font-size: 14px;
	text-align: center;
}

div#navbar>ul {
	display: flex;
	justify-content: space-evenly;
	margin: 0px;
	padding: 10px 0px 010px 0px;
	list-style-type: none;
}

div#navbar>ul>li>a {
	color: rgb(255,255,255);
	font-size: 1.1rem;
	font-weight: bold;
	text-decoration: unset;
}

/* Définition de l'apparence du footer */

body > div#footer > div.contact {
	display: flex;
	justify-content: space-between;
	margin: 0px 20px 0px 20px;
	line-height: 3rem;
	color: rgb(216, 216, 216);
	text-align: left;
}

body > div#footer > div.contact div.environment {
	background-color: rgb(169 107 0);
	color: rgba(255, 255, 255, 1);
	padding-left: 10px;
	padding-right: 10px;
}