html, body {
	width: 			        100%;
	height: 		        100%;
	-webkit-touch-callout:  none;
	-webkit-user-select:    none;
	-khtml-user-select:     none;
	-moz-user-select:       none;
	-ms-user-select:        none;
	user-select:            none;
	overflow:				hidden;
	cursor:					noned;
    font-family: 			'Flama';
	font-size: 				20px;
	font-weight: 			300;
	--maxwidth: 			800px;

	--rouge: #e60715;
	--jaune: #FFEC01;
	--bleu: #019EE2;

	background:	    		var(--rouge);
	color:				    white;

}
body.lock *  {
	pointer-events: none !important;
}
.logo, .action_button {
	position: fixed;
	left: 0;
	z-index: 20;
}
.logo {
	top: 0;
}
.action_button {
	bottom: 0;
}

p {
	margin: 1rem auto;
	width: 90%;
	line-height: 120%;
}
p.bold {
	font-weight: 700;
	font-size: 1.2rem;
}



body.link .questions-container, body.link .theme-container {
	height: 100vh !important;
}
body.link .theme-container {
	padding-bottom: 3rem;
}

h1 {
	font-weight: 700;
	font-size: 2rem;
	font-style: italic;
}


.intro-container, .algo-container, .questions-container, .theme-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.intro-container, .algo-container {
	background-color: var(--jaune);
	display: none;
	transform: scale(1.2);
	transform-origin: center center;
	z-index: 50;
}
.questions-container, .theme-container {
	width: calc(100vw - 550px - 1rem);
	height: calc(100vh - 8rem);
	padding: 4rem 1rem 4rem 550px;
	display: none;
	transition: background-color 0.5s linear;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.questions .question .reponses-multi.exclusif {
	max-height: calc(100vh - 17rem);
}
.theme-infos.theme-info1 {
	margin-top: -4rem;
}


.questions-container.intro {
	background: var(--rouge);
	background-image: url("assets/bg_rouge.png");
}
.questions-container:not(.intro) {
	background: var(--jaune);
	background-image: url("assets/bg_jaune.png");
}
.questions-container.intro, .questions .question .reponses-multi, .theme-container{
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.questions-container:not(.intro) .intro {
	display: none;
}
.questions-container .intro > p:first-child {
	margin-top: 0;
}

.ascendant-prefix {
	text-transform: uppercase;
	text-align: center;
	font-size: 0.75rem;
	margin-top: 3rem;
}
.questions .question {
	color: var(--rouge);
	margin: 0 3rem;
	font-weight: 500;
}
.questions .question p {
	margin: 1rem 0 1rem 0;
	font-size: 0.8rem;
}
.questions .question .reponses-multi {
	display: flex;
	justify-content: space-evenly
}
.questions .question .reponses {
	display: flex;
	margin-top: 2rem;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	justify-content: center;
}
.questions .question .reponses.wrap {
	flex-wrap: wrap;
}
.questions .question .reponses.column {
	flex-direction: column;
	justify-content: flex-start;
}
.questions .question .reponses.column.slim {
	width: fit-content;
}
.questions .question .reponses.column .reponse{
	text-align: center;
	padding: 1rem 1rem;
}
.questions .question .reponses .reponse {
	border: 0.2rem solid var(--bleu);
	border-radius: 5rem;
	background: var(--jaune);
	color: var(--bleu);
	padding: 0.9rem 1.2rem;
	font-size: 1.25rem;
	margin: 0.4rem;
	font-weight: 600;
}
.questions .question .reponses .reponse.selected {
	background: var(--bleu);;
	color: white;
}








.theme-container {
	background-color: var(--rouge);
	background-image: url("assets/bg_rouge.png");
}

.theme-container h1 {
	text-transform: uppercase;
}
.theme-container h2, .theme-container h3 {
	font-family: "Flama Condensed";
	font-size: 1.5rem;
	text-transform: uppercase;
	text-align: center;
}
.theme-container h2 {
	letter-spacing: 0.4rem;
	font-weight: 600;
}
.theme-container h3 {
	padding: 2rem 0 0 0;
}

.theme-infos.theme-info1 {
	position: relative;
	width: 100%;
}
.theme-infos.theme-info2 {
	padding-bottom: 2rem;;
}
.theme-infos video.theme-constellation {
	max-height: 30rem;
	width: 100%;
	mix-blend-mode: lighten;
}

body.link .qrcode-container {
	height: 7rem;
}
body.link .qrcode-container *, body.link .action_button.restart {
	display: none !important;
}
body:not(.link) .qrcode-container {
	background-color: white;
	box-shadow: 0 0 5rem var(--jaune);
	color: black;
	margin: 5rem auto 0 auto;
	padding: 1.5rem;
	text-align: center;
	width: 11rem;
}
#qrcode {
	display: inline-block;
}
#qrcode img {
	width: 10rem;
}
.qrcode-consigne {
	padding-bottom: 1rem;;
	font-size: 0.75rem;
	font-weight: 600;
}

/*
iframe {
	transform-origin: top left;
}
.iframe {
	margin: auto;
}
*/

@media (max-width: 1250px) {
	body {
		font-size: 1rem;
	}
	p.bold { 
		font-size: 1rem;
	}
	.logo {
		height: 15vh;
	}
	.questions-container, .theme-container {
		width: calc(100vw - 1rem - 1rem);
		height: calc(100vh - 12rem);
		padding: 8rem 1rem 4rem 1rem;
	}
}	