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

:root {
	--blue: #008cba;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--red: #f04124;
	--orange: #fd7e14;
	--yellow: #e99002;
	--green: #43ac6a;
	--teal: #20c997;
	--cyan: #5bc0de;
	--white: #fff;
	--gray: #888;
	--gray-dark: #333;
	--primary: rgb(89, 72, 240);
	--secondary: #eee;
	--success: #43ac6a;
	--info: #5bc0de;
	--warning: #e99002;
	--danger: #f04124;
	--light: #eee;
	--dark: #222;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
	--font-family-sans-serif:
		"Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
		"Segoe UI Symbol";
	--font-family-monospace:
		SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
		monospace;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 100 !important;
}

p,
ul,
ol {
	font-size: 1.1em;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

html body {
	font-family: var(--font-family-sans-serif) !important;
	font-weight: 100 !important;
}

/* body {
	font-size: 1.2em;
} */

code * {
	font-family: var(--font-family-monospace) !important;
}

.header-banner {
	background-image:
		linear-gradient(90deg, rgba(227, 103, 14, 0.6) 0%, #008cba 90%),
		url("/images/bg6.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
}

.card img {
	filter: brightness(0.5);
}

.card:hover img {
	filter: brightness(0.2);
}

/* .thumbnail {
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.thumbnail:hover {
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
} */

.card {
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card:hover {
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
}

ul {
	list-style: none;
	padding-left: 1em;
	text-indent: -1em;
	margin: 0;
}

ol {
	list-style: none;
	text-indent: -1em;
	padding-left: 1em;
	margin: 0;
}

ul li {
	padding-left: 1em;
	padding-bottom: 0.5em;
}

ul li::before {
	content: "\00BB";
	padding-right: 0.5em;
	color: var(--warning);
}

ol li {
	padding-bottom: 0.5em;
	counter-increment: count-me;
	padding-left: 1em;
	text-indent: -1.5em;
}

ol li::before {
	content: counter(count-me) ". ";
	padding-right: 0.5em;
	color: var(--warning);
}

.experiment {
	background-image:
		linear-gradient(90deg, rgba(227, 103, 14, 0.6) 0%, #008cba 90%),
		url("/images/bg6.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	/* background: linear-gradient(0deg, #dead26 5%, rgba(227, 103, 14, 0.6) 100%); */
}
