@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600;700&display=swap');

html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	color: #333;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.active, h1 {
    color: #11939c;
	background: linear-gradient(to left, #0c2175, #43dee9);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.subactive, h2 {
	color: #4fccd4;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.6em;
}

h3 {
	color: #5A5A5A;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

pre {
	background: #EEE;
	border-radius: 4px;
	font-size: 0.8rem;
	color: #333;
	padding: 16px;
}

code {
	font-family: 'Fira Code', monospace;
	color: #666;
}

p, ul, ol {
	line-height: 1.5;
}

.flex-gallery {
	display: flex;
	flex-wrap: wrap;
}

.flex-gallery-item {
	display: flex;
	flex-direction: column;
	margin: 10px;
	align-items: center;
}

.flex-gallery-caption {
	font-size: 0.9rem;
	color: #888;
	margin-top: 10px;
}