:root {
	--bg-color: #0f172b;
	--fuchsia-900: #721378;
	--fuchsia-700: #a800b7;
}

body {
	min-height: 100vh;
	background-color: #0f172b;
	color: #ffffff;
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	display: flex;
	flex-direction: column;
	margin: 0;
}

nav {
	background-color: #721378;
	padding: 16px;
	top: 0px;
	font-size: 1.25rem;
}
nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
}
nav li:first-child {
	margin-right: auto;
	font-size: 1.877rem;
}
nav a {
	text-decoration: none;
	color: #ffffff;
}

main {
	display: flex;
	flex-direction: column;
	place-content: center;
	flex-grow: 1;
}

.title {
	text-align: center;
	color: #a800b7;
}

table {
	margin: 0 auto;
	border: 1px solid #64748B;
	border-collapse: collapse;
	width: 66%;
}

td {
	padding: 1rem;
	text-align: right;
}

td:first-child {
	width: 80%;
	text-align: left;
}

tr:nth-child(odd) {
	background-color: #1e293b;
}
