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

body
{
	background-color: grey;
	color: white;
	margin: auto;
	width: 100%;
	display: block;
	font-family: Lato;
	/*background-repeat: no-repeat;*/
	background-size: 1500px;
	margin: auto;
	transition: background-color 0.5s;
}

button
{
    padding: 15px;
    border: none;
    border-radius: 9px;
    font-size: 0.6em;
    text-align: center;
    text-transform: uppercase;
    font-family: Lato;
    letter-spacing: 2px;
    background-color: royalblue;
    font-weight: bold;
    color: white;
    cursor: pointer;
    box-shadow: 1px 1px 5px #aaa;

}

button:hover
{
	cursor: pointer;
    padding: 15px;
    background-color: black;
    color: white;
    transition: all 0.5s;
}


#word1, #word2
{
	font-weight: 900;
	/*color: red;*/
}

#container
{
	position: absolute;
	font-size: 15px;
    margin-left: 30%;
    margin-right: 30%;
    margin-top: 10%;
    width: auto;
    font-weight: 900;
    font-size: 1.5em;
    width: 100%;

}

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

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


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

	padding: 10px;
	padding-left: 15px;
	margin: 2%;
	border-radius: 15px;
	transition: 0.3s;
	left: 2%;
	bottom: 2%;
	color: grey;

	line-height: 25px;
	
}

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




#outerControls
{
	display: none;
	font-size: 12px;
	position: absolute;
	/*background-color: rgb(50,50,50);*/

	padding: 10px;
	margin: 1%;
	border-radius: 10px;
	transition: 0.3s;
	left: 2%;
	top: 2%;
	color: #ccc;

	line-height: 25px;
}


#outerControls:hover
{
	/*background-color: rgba(10, 10, 10, 0.9);*/
	color: white;

}


#download
{
	font-size: 15px;
	background-color: rgb(60,60,60);

	text-align: center;
	padding-top: 7px;
	padding-bottom: 10px;
	border-radius: 10px;
	
	color: #ccc;
	cursor: pointer;
}

#download:hover
{
	background-color: black;
	transition: 0.3s;
	text-align: center;
	padding-top: 7px;
	padding-bottom: 10px;
	border-radius: 10px;
	transition: background-color 0.3s;
	transition: color 0.3s;
	color: white;
	cursor: pointer;
}



