ul li{
	display: block;
	padding: 5px;
	list-style: none;
	text-decoration: none;
	background-color: blue;
	color: white;
	font-family: monospace;
	font-size: 2em;
	border-radius: 30px;
	width: auto;
	margin-top: 5px;
	transition: 0.3s linear;
	text-align: center;
}

ul li:hover{
	background-color: darkblue;
	color: yellow;
	cursor: pointer;
	/*padding-left: 20px;*/
	transform: scale(1.1);
}

#linha{
	height: 100vh;
}