body{
	background-color: rgba(220,130,150);
}
.corps{
	width: 90%;
	margin: auto;
	text-align: center;
}
.joueur {
	width: 250px;
	margin: 1%;
	text-align: left;
	display: inline-block;
	height: auto;
	vertical-align: middle;
	background-color: rgba(248,209,129,1);
	cursor: default;
	border-radius: 5px;
	box-shadow: 5px 5px 5px rgba(0.3,0.3,0.3,0.3);
	transition-property: background-color, transform, top, left, width, height, position, box-shadow;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	padding: 10px;
	box-sizing: border-box;
	position: relative;
}
.joueur h4 {
	text-align: center;
	margin-top: 0px;
}
.connecte {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 15px;
	height: 15px;
	background-color: green;
	border-radius: 50%;
}

.joueur:hover:not(.invisible) {
	background-color: rgba(243,165,5,1);
	transform: scale(1.05, 1.05);
	cursor: pointer;
	box-shadow: 10px 10px 5px rgba(0.3,0.3,0.3,0.3);
}

#cadre {
	position: fixed;
	top: 200px;
	left: 50%;
	background-color: white;
	border-radius: 10px;
	transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
	width: 75%;
	text-align: center;
	height: max(400px, min(80%, calc(100% - 250px)));
}
#cadre-header {
	background-color: rgba(248,209,129,1);
	text-align: center;
	position: relative;
	width: 100%;
	height: 40px;
	border-radius: 10px 10px 0 0;
}
#cadre-titre {
	margin: 0px 40px 0px 20px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	font-weight: bold;
	font-size: 14pt;
}
#croix {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	cursor: pointer;
}
#cadre-content {
	border: none;
	height: calc(100% - 50px);
	width: 100%;
	overflow: hidden;
}
.control {
	cursor: pointer;
}