@import url(https://fonts.googleapis.com/css?family=Lato);


#container
{
	position: absolute;
	font-family: Lato;
	font-size: 15px;
}

#info
{
	position: absolute;
	background-color: rgba(200, 200, 200, 0.5);

	padding: 20px;
	margin: 2%;
	border-radius: 10%;

	transition: 0.3s;
}

#info:hover
{
	background-color: rgba(10, 10, 10, 0.9);
	color: rgb(250,250,250);
}


#instruction
{
	position: absolute;
	background-color: rgba(200, 200, 200, 0.5);

	padding: 20px;
	margin: 2%;
	border-radius: 10px;
	transition: 0.3s;
	right: 2%;
}

#instruction:hover
{
	background-color: rgba(10, 10, 10, 0.9);
	color: rgb(250,250,250);
}
