@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carrois+Gothic&display=swap');
/***********************************************/

html {
	height: 100%;
}

html, body {
	background: #101113;
	padding: 0;
	margin: 0;
	max-width: 100%;
	min-height: 100%;
}

#wrapper {
	width: 90%;
	max-width: 1500px;
	background: #2f3741;
	min-height: 100vh;
	margin: 0 auto;
	border-left: 10px solid #0c0c0e;
	border-right: 10px solid #0c0c0e;
	position: relative;
	overflow: hidden;
}

#header {
	height: 400px;
	width: 100%;
	background: url(../graf/header.png) no-repeat #671e1e;
	background-position: center center;
	background-size: cover;
	border-bottom: 10px solid #0c0c0e;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

#header img.otsake {
	height: auto;
	max-width: 100%;
	margin: auto;
	object-fit: contain;
}


/*************************************/

#main {
	font-family: "Carrois Gothic", sans-serif;
	color: #7b9fbc;
	font-weight: 100;
	font-size: 1em;
	letter-spacing: 0.05em;
	padding: 20px 30px;
}

#main blockquote {
	background: #bbb;
	color: #111;
	padding: 15px;
	border-radius: 15px;
}


/**************************************************/

#ajankohtaista {
	position: fixed;
	top: 30px;
	right: 135px;
	z-index: 1000;
	cursor: pointer;
	width: 80px;
	height: 80px;
}

#palkkivasen {
	position: fixed;
	top: 0;
	right: -250px;
	width: 250px;
	height: 100vh;
	background: #0c0c0e;
	padding-top: 110px;
	transition: 0.3s;
	z-index: 998;
}

#palkkivasen.active {
	right:0;
}

#palkkivasen h2 {
	font-family: "Fjalla One", sans-serif;
	color: #c8c8c8;
	font-weight: normal;
	padding: 4px 0px;
	font-size: 30px;
	text-align:center;
	box-shadow: 0px 3px 8px rgba(0,0,0,0.4);
	background: #671e1e;
}


/************************************************/

#hamppari {
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 999;
	cursor: pointer;
	width: 80px;
	height: 80px;
}

#hamppari img, #ajankohtaista img {
	width: 100%;
	height: auto;
}

/* Itse menu */
#navi {
	position: fixed;
	top: 0;
	right: -250px; /* piilossa aluksi */
	width: 250px;
	height: 100vh;
	background: #0c0c0e;
	padding-top: 110px;
	transition: 0.3s;
	z-index: 998;
}

/* Linkit */
#navi a {
	font-family: "Fjalla One", sans-serif;
	letter-spacing: 0.07em;
	display: block;
	color: #53875d;
	text-decoration: none;
	padding: 15px 20px;
	font-size: 25px;
	border-left: 10px solid #0c0c0e;
}

#navi a:hover {
	color: #629e6d;
	border-left: 10px solid #629e6d;
}

/* Kun menu on auki */
#navi.active {
	right: 0;
}