html,
body {
	margin: 0;
	width: 100vw;
	height: 100vh;
}

html {
	background: #000;
}

body {
	box-sizing: border-box;
	font-family:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Oxygen,
		Ubuntu,
		Cantarell,
		"Open Sans",
		"Helvetica Neue",
		sans-serif;
	background-color: #161424;
	color: whitesmoke;
}

.carte {
	margin: 8rem auto;
	padding: 2rem;
	max-width: max-content;
	background-color: #262241;
	border: 2px solid #544c83;
	border-radius: 2rem;
}

.carte > :first-child {
	margin-top: 0;
}

.carte > :last-child {
	margin-bottom: 0;
}

.titre {
	padding: 1rem;
	background-color: #544c83;
	border-radius: 1rem;
	font-size: 2.5rem;
}

.description {
	line-height: 1.5;
}

.liens {
	list-style: lower-alpha;
	line-height: 1.5;
}

.lien a:link,
.lien a:visited {
	color: #d2ccf1;
}
