@import url('themes/latte.css');
@import url('themes/mocha.css');

@font-face {
	font-family: firacode-regular;
	src: url("/fonts/FiraCode-Regular.ttf") format("truetype");
}

@font-face {
	font-family: firacode-bold;
	src: url("/fonts/FiraCode-Bold.ttf") format("truetype");
}

@media only screen and (min-width: 960px) {
	body {
		margin: auto;
		width: 960px;
	}
}

html {
	height: 100%;
	box-sizing: border-box;
}

.dark{
	--background-color: var(--dark-background-color);
	--text-color: var(--dark-text-color);
	--header-color: var(--dark-header-color);
	--a-color: var(--dark-a-color);
	--strong-color: var(--dark-strong-color);
	--em-color: var(--dark-em-color);
	--cursor: var(--dark-cursor);
}

body {
	position: relative;
	background-color: var(--background-color);
	color: var(--text-color);
	font-family: firacode-regular, sans-serif;
	min-height: 100%;
	transition: 0.5s;
}

main {
	padding-bottom: 35px;
}

footer {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1rem;
	text-align: center;
	font-size: small;
}

h1 {
	text-align: center;
}

h1, h2, h3 {
	color: var(--header-color);
}

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

strong, b{
	font-family: firacode-bold, sans-serif;
}

strong {
	color: var(--strong-color);
}

em, i {
	color: var(--em-color);
}

button {
	display: inline-block;
	padding: 10px 20px;
	background-color: var(--background-color); /* or any other color you prefer */
	color: var(--text-color); /* or any other color you prefer */
	border: 0px solid var(--header-color); /* or any other color you prefer */
	border-radius: 5px;
	text-decoration: none;
	font-family: firacode-regular, sans-serif;
	transition: background-color 0.3s, color 0.3s;
}

button:hover {
	background-color: var(--header-color); /* Change background color on hover */
	color: var(--background-color); /* Change text color on hover */
}

.icon {
	color: currentColor;
}

.cursor:hover h2::before, .cursor:hover h3::before {
	content: var(--cursor);
	padding: 0;
	padding-right: 6px;
	margin: 0;
}

.noBullet {
	list-style-type: none;
}

.center {
	text-align: center;
}

.break-word {
	word-wrap: break-word;
}
