@charset "UTF-8";
/* CSS Document */
html {
	padding: 0px;
	margin: 0px;
}
body {
    height: 100vh;
    background-image: url(../Images-1/rodion-kutsaiev-9Fong4i8CFk-unsplash.jpg);
    background-size: cover;
	background-position: center center;
    background-repeat: no-repeat;
	margin: 0px;
	
}
#colorwash {
    height: 100vh;
    weidth: 100vw;
    background-color: rgba(176,224,128,0.82);
}
header {
	padding: 50px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	
}
h1{
    font-family: 'Signika Negative', sans-serif;
    background-position: center center;
    font-size: 50px;
    color: rgba(80,74,13,1.00);
}
ul { 
	list-style-type:georgian;
	display: flex;
	flex-direction: row;
	align-self: center;
	margin-top: 50px;
}
li {
	font-family: 'Barlow', sans-serif;
	display: flex;
	flex-direction: inline-block;
	margin-left: 10px;
	font-size: 18px;
}
li a {
    color: rgba(80,74,13,1.00);;
	text-decoration: none;
	
}
li a:hover {
	text-decoration: underline;
	
}



@media screen and (max-width:600px){
	header {
		flex-direction: column;	
	}
	h1 {
		text-align: center;
		margin-bottom: 20px;
	}
	li {
    	margin-left: 5px;
		margin-right: 5px;
		text-align: center;
	}
	ul {
		padding: 0px;
		margin: 0px;
	}
}