/* Feuille de style pour toutes les pages */

html {
	width: 100vw;
	background-color: lightblue;
	overflow-x: hidden;
	margin: 0;
	font-family: "Poppins";
}


body {
	background-color: lightblue;
	margin:0;
}

body>* {
	margin: 0 2vw;
}

@font-face {
	font-family: Poppins;
	src: url(assets/fonts/Poppins/Poppins-Regular.ttf);
}

h1 {
	text-align: center;
	font-size: 3em;
	justify-self: center;
}

h2 {
	text-align: center;
	font-size: 2.5em;
	text-decoration: underline;
}

p,
a,
h1,
h2,
button {
	font-family: 'Poppins';
}

p,
a,
button {
	font-size: 1.7em;
}

h3 {
    font-size : 2em;
    text-align: left;
    text-decoration: underline;

}

/* Google fonts: icon */
.material-symbols-outlined {
	font-variation-settings:
		'FILL' 0,
		'wght' 400,
		'GRAD' 0,
		'opsz' 12
}

/* Home button */

.header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.homebtn {
	margin: .5em;
	text-decoration: none;
	font-size: 3em;
	color: black;
	transition: .3s;
	transform: rotate(-90deg);
}

#homebtn {
	font-size: 3em;

}

.homebtn:hover {
	transform: scale(1.5) rotate(-180deg);
	transition: .3s;
}

.fill {
	width:2em;
}

/* Score styling */

#score {
	font-family: "Poppins";
	font-size: 50px;
}

#score.vbad {
	color: red;
}

#score.bad {
	color: rgb(82, 76, 76);
}

#score.good {
	color: #37692c;
}

#score.vgood {
	color: #39f60f;
}

/* Reste */

.katex-question {
	font-size: 2em;
	/* width: 10em; */
}

.answers {
	width: 8em;
	font-size: 1.5em;
}

.hide {
	display: none;
}