* {
	position: relative;
}

html {
	min-height: 100%;
	/*background-color: #000000;
	filter: invert() hue-rotate(180deg);*/
}

body {
	min-height: 100%;
	padding-top: 16px;
	box-sizing: border-box;
	min-height: 100vh;
}

.container {
	max-width: 500px;
}

.row > div {
	margin-bottom: 10px;
}

h3 > a {
	text-decoration: none;
	color: inherit;
}

h3 > a:after {
	content: ' ';
	background-color: black;
	width: 0%;
	height: 2px;
	left: 0px;
	bottom: 2px;
	position: absolute;
	transition: .2s;
}

[data-bs-theme="dark"] h3 > a:after {
	background-color: rgb(173, 181, 189);
}

h3 > a:hover:after {
	width: 100%;
}

[data-bs-theme="light"] body {
	background-color: rgb(33, 37, 41);
}

[data-bs-theme="dark"] .no-light {
	display: none;
}

[data-bs-theme="light"] .no-dark {
	display: none;
}
