html, body{
	color: black;
	background-color: #dddddd;


	margin: 0;
	width: 100vw;
}

a{
	color: inherit;
	text-decoration: inherit;
}

#infos{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
}

#participants{
	display: flex;
	justify-content: center;
	align-items: center;
}

#togivetowish{
	border: 1px solid white;
	width: 800px;
	padding: 10px;
}

#participants ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.participant{
	margin: 1em;
	padding: 10px;
	border-radius: 10px;
	text-align: center;
}

#romanians > .participant{
	background-color: blue;
}

#externals > .participant{
	background-color: red;
}

#participant_name{
	color: red;
}

.hide{
	filter: blur(8px);
}

.hide:hover{
	filter: blur(0);
}

form{
	text-align: center;
	margin-bottom: 100px;
}

@media (prefers-color-scheme: dark) {
	html, body{
		color: white;
		background-color: #222222;
	}
}

@media (max-width: 800px) {
	html, body{
		font-size: 1.2em;
		width: 100vw;
	}

	#infos{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 100vw;
	}

	#togivetowish{
		border: 1px solid white;
		max-width: 100%;
		padding: 10px;
	}

	form{
		width: 100%;
	}

}

