body {
	opacity: 0;
	background:#ADD8E6;
	font-family: Arial;
	font-size: 20px;
}

@font-face{
	font-family: fontti;
	src: url("tyyli/HoboStd.otf");
}

#peli_alusta{
	width: 70%;
	margin:0 auto;
}

button, input[type="submit"] {
	border: 0;
	background: linear-gradient(#0099CC, #006080);
	background-color: #0099CC;
	border-radius: 4px;
	padding:10px;
	/*font-family: Sans-Serif;*/
	font-family: Helvetica;
	font-size: 20px;
	transition-duration: 0.3s;
	color: white;
	cursor: pointer;
}

button:hover, input[type="submit"]:hover {
	box-shadow: 0px 0px 5px black;
	background: #0099CC;

}

#ilmaisu_alue{
	border: 1px solid black;
	border-radius: 2px;
	background-color: white;
	width: 100%;
}

#aikapalkki_container{
	width: 50%;
	height: 25px;
	border-radius: 25px;
	background-color: gray;
	overflow: hidden;
	box-shadow: 0px 0px 2px 1px black;
	margin: 0 auto;
}

#aikapalkki{
	height: 100%;
	width: 0;
	float: left;
}

.diplomibtn, .levelselect, #alusta {
	display:none;
}

@keyframes widen {
	0% {
		width: 0;
		background-color: lime;
	}
	50% {
		width: 50%;
		background-color: yellow;
	}
	100% {
		width: 100%;
		background-color: red;
	}
}

.maincont {
	width:100%;
	text-align: center;
}

.notice {
	display: none;
	opacity:0;
	transition: 200ms ease;

	position: fixed;
	width:100%;
	height:100%;
	left:0;
	top:0;
	background:rgba(0, 0, 0, 0.5);
	padding-top: 100px;
	color:white;
	text-align: center;
	z-index:10;
}

.notice button {
	margin:5px;
}

.maincont {
	transition: 200ms ease;
	z-index:0;
}

input[type="text"] {
	color: black;
	display: block;
	margin: 5px auto;
	border-radius: 5px;
	padding:3px;
}