body {
	/* Color definitions */
	--background-color-light: #f5f5f5;
	--background-color-overlay-light: #ececec;
	--accent-color-light: #253447;
	--background-color-dark: #121212;
	--background-color-overlay-dark: rgba(255,255,255,0.08);
	--accent-color-dark: #f5f5f5;
	/* Current color usages */
	--background-color-active: var(--background-color-light);
	--background-color-overlay-active: var(--background-color-overlay-light);
	--accent-color-active: var(--accent-color-light);
	background-color: var(--background-color-active);
	color: var(--accent-color-active);
	font-size: 100%;
}

h1 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 4.25em;
	letter-spacing: 3px;
}

h2 {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 1.5em;
	letter-spacing: 2px;
}

h3 {
	margin-top: 2em;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 1.5em;
	letter-spacing: 1px;
}

h4 {
	font-family: 'aileron', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1.25em;
}

h5 {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	font-family: 'aileron', sans-serif;
	font-weight: 400;
	font-style: italic;
	font-size: 1.2em;
}

hr {
	background-color: var(--accent-color-active);
	border: none;
}

p {
	font-family: 'aileron', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2em;
}

ul {
	list-style-type: '- ';
	padding-left: 1.5em;
}

a {
	color: var(--accent-color-active);
}

.hover-link {
	text-decoration: none;
}

.hover-link:hover {
	text-decoration: underline;
	text-decoration-style: dotted;
}

.no-decoration {
	text-decoration: none;
}

.content {
	width: 60%;
	margin: auto;
	padding-top: 5%;
	margin-bottom: 5%;
	display: table;
}

.left-column {
	display: table-cell;
	float: left;
	position: relative;
	width: 40%;
}

.right-column {
	display: table-cell;
	float: left;
	position: relative;
	width: 55%;
	margin-left: 3%;
}

/* If the browser window is smaller than 600px, make the columns stack on top of each other */
@media only screen and (max-width: 600px) {
	.left-column {
	  display: block;
	  width: 100%;
	  background-color: green;
	}
}

.badge {
	background-color: var(--accent-color-active);
	color: var(--background-color-active);
	font-family: 'aileron', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 19px;
	display: inline-block;
	padding: 5px 9px;
	border-radius: 6px;
	margin: 4px 3px;
}

.link-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.link-container h3 {
	margin-top: 1em;
}

.link-container h4 {
	margin-top: 0.5em;
	margin-bottom: 0.67em;
}

.navbar {
	position: fixed;
	margin-top: 6%;
	margin-left: 3%;
	text-align: center;
}

.navbar a {
	display: block;
	padding: 14px;
	text-decoration: none;
	font-family: 'aileron', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2em;
}

.navbar a:hover {
	text-decoration: underline;
	background-color: var(--background-color-overlay-active); 
}

#dark-mode-selector {
	position: fixed;
	bottom: 0%;
	right: 0%;
	margin-right: 3%;
	margin-bottom: 3%;
	text-align: center;
}

#dark-mode-selector button {
	background: transparent;
	border: none;
	color: var(--accent-color-active);
}
