/* Feuille de style pour toutes les pages */

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

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

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

h1 {
	text-align: center;
	font-size: 2.5em;

}

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

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


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

#score.vbad {
	color: red;
}

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

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

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

.katex-question {
	font-size: 1em;
	width: 10em;
}

.answers {
	width: 8em;
}

/* Home button */

.homebtn {
	position: fixed;
	margin: .5em;
	text-decoration: none;
	color: black;
	font-size: 2em;
}

#homebtn {
	font-size: 1.7em;
}

.homebtn {
	transition: .3s;
}

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




#inserting {
	max-width: 90vw;
	margin: 20px;
}

#inserting>div {
	width: 100%;
	display: flex;
	justify-content: space-between;
}