html {
	background-image: url(images/fire-emblem.png);
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

h2 {
	text-align: center;
}

.links {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.link {
	display: flex;
	flex-direction: column;
	width: 160px;
	text-decoration: none;
	background-color: rgba(255, 255, 255, 0.8);
}

.link img {
	margin: 0 5px;
}
.link span {
	text-align: center;
	color: black;
	font-weight: bold;
}

h2 span {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 0 10px;
}

ul {
	width: 700px;
	margin: auto;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 0;
}

ul li {
	padding: 5px;
	font-size: 18px;
	list-style: none;
}

ul li.fr::before {
	content: "🇫🇷 ";
}

ul li.en::before {
	content: "🇬🇧 ";
}

ul li a {
	text-decoration: none;
	color: black;
}
