@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

@font-face {
	font-family: Coolvetica;
	src: url("../assets/coolvetica/coolvetica\ rg.otf");
	/* EOT file for IE */
}

* {
	/* font-family: 'Coolvetica', sans-serif; */
	/* font-weight: 600; */
	/* box-sizing: border-box; */
	/* margin: 0; */
	/* padding: 0; */
	/* text-decoration: none; */
}

body {
	background-color: white;
	width: 100%;
	margin: auto;
}

#container {
	height: 100%;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px solid black;
	border-radius: 3px;
}

#header {
	/* background-color: #02210f; */
	/* background-color: grey; */
	padding: 1ch 1ch;
	/* height: 80px; */
	color: white;
	/* display: flex; */
	/* justify-content: space-between; */
	/* align-items: center; */
}

#header>img {
	scale: 50%;
}

#nav_bar {
	color: black;
	text-align: center;
}

#content {
	/*display: grid;*/
	height: 100%;
}

.content-entry {
	border-radius: 25px;
}

#projects {
	grid-column: 2;
}

#codeSketch {
	margin: 10px;
	display: flex;

	/* This centers our sketch horizontally. */
	justify-content: center;

	/* This centers our sketch vertically. */
	align-items: center;
}

#footer {
	color: black;
	text-align: right;
	padding-right: 5px;
	font-size: 0.5rem;
}

h1 {
	font-size: 3.5em;
	margin: 5px 0 0 0;
	padding: 10px 0 0 0;
}

h2 {
	color: #05763e;
	font-size: 1.2em;
	align-content: center;
	padding: 10px 0 0 0;
}

p {
	font-size: 0.8em;
}

#content nav li {
	font-weight: 100;
	line-height: 1.5;
	font-size: 1.5rem;
}

#content nav li a:link {
	color: #4abd2d;
}

#content nav li a:hover {
	color: #44624a;
}

#content nav li a:visited {
	color: #c0cfb2;
}

#content nav li a.nav_bar:link {
	color: black;
}

#nav_bar ul {
	width: auto;
}

#nav_bar li {
	display: inline-block;
	padding: 0 15px;
}

#nav_bar li a {
	text-decoration: none;
	color: black;
}

#nav_bar li a:hover {
	color: rgb(54, 30, 30);
}

#nav_bar .selected {
	/* color: #eb9b34; */
	color: #2a8532;
}

.carousel {
	position: relative;
	height: 400px;
	width: 400px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.carousel_image {
	width: 100%;
	object-fit: cover;
}

.carousel_track_container {
	background: white;
	position: relative;
	height: 100%;
	overflow: hidden;
}

.carousel_track {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	height: 100%;
	transition: transform 250ms ease-in;
}

.carousel_slide {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
}

.carousel_button {
	position: absolute;
	top: 50%;
	transform: traslateY(50%);
	background: transparent;
	border: 0;
	cursor: pointer;
}

.is-hidden {
	visibility: hidden;
}

.carousel_button_left {
	left: -30px;
}

.carousel_button_right {
	right: -30px;
}

.carousel_nav {
	display: flex;
	justify-content: center;
	padding: 10px 0;
}

.carousel_indicator {
	border: 0;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, .2);
	margin: 0 8px;
	cursor: pointer;
}

.carousel_indicator.current_slide {
	background: rgba(0, 0, 0, 0.85);
}

.backbutton {
	fill: white;
}

.carousel_track li a:hover {
	filter: blur(8px);
	-webkit-filter: blur(8px);
}