header {
	/*
	background: #323232;
	*/
	background: #FFFFFF;
	padding: 5px 0 20px 0;
}

.header-text {
	position: relative;
	opacity: 0;
	top: 50px;
	left: -100px;
	animation: 1s ease-out 0.5s 1 appear normal forwards;
}
.header-link {
	position: relative;
	top: 1px;
	font-size: 17px;
	color: #919191;
}
.header-text::after {
	height: 1px;
	width: 0;
	margin: 0 auto;
	position: relative;
	top: 0;
	background: #414141;
	display: block;
	content: '';
	color: rgba(0,0,0,0);
	/*animation: 1s ease-out 0s 1 unfoldUnderline normal forwards;*/
}
.header-text:hover::after {
	width: 100%;
}
@keyframes appear {
	0% {
		opacity: 0;
		top: 50px;
	}
	50% {
		opacity: 0.2;
		top: 25px;
	}
	100% {
		opacity: 1;
		top: 0;
	}
}

#header-menu {
	display: none;
}
@media screen and (min-width: 768px) and (orientation: landscape) {
	#header-menu {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		margin: 3em 2em 0 0;
	}
	#header-menu a {
		color: #414141;
		font-size: 1.6em;
		font-weight: bold;
		margin: auto 1em;
		padding-right: 0.5em;
	}
}

#search-bar-container {
	/* */
}
#search-bar-container form {
	display: flex;
	align-items: center;
	padding: 3px;
	border: solid 1px #A7A7A7;
	border-radius: 6px;
	width: 600px; 
	min-width: 30%;
	max-width: 70%;
	margin: 0 auto;
}
@media screen and (min-width: 768px) and (orientation: landscape) {
	#search-bar-container form {
		width: 32.3vw;
		max-width: 600px;
	}
}

#search-bar {
	border: 0;
	justify-self: flex-start;
	width: 1000px;
	max-width: 90%;
	padding: 10px;
}

#search-bar-button {
	border: 0;
	box-shadow: none;
	background: #FFFFFF;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.5);
	width: 4%;
	font-size: 1.2em;
	padding: 0 1%;
	margin-left: auto;
	margin-right: 0.3em;
	width: 1.2em;
}
#search-bar-button:hover {
	cursor: pointer;
	box-shadow: none;
}

#search-bar:focus,
#search-bar-button:focus {
	outline: none;
}