@charset "UTF-8";

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	background-color: rgb(69, 69, 69);
}

main {
	background-color: white;
	padding: 1em;
	margin: 3em auto;
	max-width: 35em;
	min-height: 35em;
	border-radius: 10px;
	box-shadow: 5px 5px 3px 3px rgba(0, 0, 0, 0.495);
}

h1 {
	color: darkgoldenrod;
}

a, a:visited {
	color: rgb(34, 34, 34);
	font-weight: bolder;
}

a:hover {
	text-decoration: none;
	color: darkgoldenrod;
}

.btnVoltar {
	width: 4em;
	height: 2em;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 1em;
	background-color: #2222FF;
	color: #FFFFFF;
	border: 1px solid #2222FF;
	border-radius: 10px;
	box-shadow: 2px 5px 5px #2b2a2a90;
	cursor: pointer;
	transform: scale(1);
	transition-duration: 0.6s;
}

.btnVoltar:hover {
	transform: scale(1.1);
	transition-duration: 0.6s;
}