@charset "utf-8";
#tens {
	color:white;
	font-size: 0;
}
/* Lanceur du questionnaire */
#lanceur {
	display: flex;
    align-items: center;
	flex-direction: column;
}
.pret {
    color: #fff;
    background-color: #504ccd;
    border-color: #504ccd;
	font-size: 5em;
	padding: 20px;
	width: 300px;
	margin-top: 50px;
	margin-bottom: 50px;
	border-radius: 5px;
}
.go {
    color: #fff;
    background-color:#28a745;
    border-color: #28a745;
	font-size: 5em;
	padding: 20px;
	border-radius: 100px;
	cursor: pointer;
}
.go:hover {
	background-color:#009933;
}
/* FIN Lanceur du questionnaire */

/* Questions et réponses */
.rep {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
	width: 780px;
	margin-left: auto;
	margin-right: auto;
}
.question {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 50px;
}
.proposition {
	/* Ancienne couleur : #007bff */
    background-color: #504ccd;
    border: none;
    color: white;
    padding: 40px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.4rem;
    cursor: pointer;
	border-radius: 5px;
    transition-duration: 0.4s;
	border-color: #2b288d;
}
.proposition:hover {
    background-color: #504ccda6;
}
.red {
	background-color: red;
}
/* FIN Questions et réponses */

#chrono {
	font-size: 5em;
	display: flex;
    justify-content: center;
	margin-top: 40px;
}

/* Fin du questionnaire */
#fin {
	display: flex;
    align-items: center;
	flex-direction: column;
}
.victoire {
    color: #fff;
    background-color:#28a745;
    border-color: #28a745;
	font-size: 5rem;
	padding: 20px;
	width: 600px;
	border-radius: 60px;
	margin-top: 30px;
}
.recommencer {
    color: #fff;
    background-color: #504ccd;
    border-color: #504ccd;
	font-size: 2.5rem;
	padding: 10px;
	width: 400px;
	margin-top: 50px;
	border-radius: 60px;
	cursor: pointer;
}
.recommencer:hover {
	background-color:#504ccda6;
}
/* FIN Fin du questionnaire */

@media (max-width: 800px) {
	.rep {
		width: auto;
	}
	.victoire {
		font-size: 4rem;
		width: 480px;
		margin-top: 30px;
	}
	.recommencer {
		font-size: 2em;
		width: 320px;
	}
	.pret {
		font-size: 3.5rem;
		width: 240px;
	}
}
@media (max-width: 560px) {
	.question {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.proposition {
		font-size: 18px;
	}
	#chrono {
		font-size: 55px;
		margin-top: 30px;
	}
	.victoire {
		font-size: 3.5rem;
		width: 420px;
		margin-top: 30px;
	}
	.recommencer {
		font-size: 1.8rem;
		width: 280px;
	}
	.proposition:hover {
		background-color: #504ccd;
	}
}
@media (max-width: 480px) {
	.question {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.proposition {
		font-size: 12px;
		padding: 20px 16px;
		font-weight: bold;
	}
	#chrono {
		font-size: 45px;
		margin-top: 15px;
	}
	.victoire {
		font-size: 3rem;
		width: 300px;
		margin-top: 30px;
	}
	.recommencer {
		font-size: 1.5rem;
		width: 200px;
	}
	.pret {
		font-size: 2.5rem;
	}
}