@charset "utf-8";
/* CSS Document */
/*HEADER COMPONENTS*/
header{
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	top:0;
	position: relative;
	font-family: monospace;
	margin-bottom: 15px;
}

header > .search{
	display:flex;
	align-items: center;
}

.title {
	display: block;
	width: 50%;
	font-weight: bold;
	font-style: normal;
	text-align: left;
	color: #E1F25C;
	letter-spacing: 5px;
	float:left;
	transition: all 0.9s linear;
	text-shadow: 2px 2px #ff0000;
	font-size: 3vw;
}

/* SECONDARY HEADER/NAV */

nav{
	width: 100%;
}

#site {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-content: center;
	color:#9BD1E5;
}
#site > div{
	transition: all 0.9s linear;
	letter-spacing: 1px;
}

div > #last{
}


@media (max-width: 525px){
	header {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		width:100%;
		position:fixed;
		left: 0;
		top: 0;
		background-color: #F1F2D8;
		border-bottom: 1px solid black;
	}
	
	.title {
		font-weight: bold;
		font-style: normal;
		text-align: left;
		font-size: 8vw;
		color: #E1F25C;
		letter-spacing: 0.5vw;
		transition: all 0.9s linear;
		text-shadow: 2px 2px #ff0000;
		margin-bottom: 10px;
		margin-top: 5px;
	}
	
	.search{
		margin-top:55px;
		width: 100%;
	}
	
	.dropdown{
		width:45%;
	}

	.menu{
		text-align: center;
		font-size: 12px;
		position: absolute;
		right:5%;
		top: 1%;
		padding:0;
		background-color: transparent;
		border: 0px;
	}

	#site{
		display: none;
		margin:0px;
		padding-bottom:10px;
		color:#9BD1E5;
		position: absolute;
		background-color: #E1F25C;
		min-width: 160px;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		padding: 12px 16px;
		z-index: 1;
		right: 0;
	}
	#site div{
		display: flex;
		flex-direction: column;
		height: 15px;
	}
	
	.dropdown:hover #site {
		display:block;
	}


}

