/* CSS Document */

html, body, div {
	box-sizing: border-box;
}

html {
	background-color: lightblue;
}

body {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	width: 800px;
	min-height: 80vh;
	margin: 0 auto;
	padding: 40px;
	margin-top: 20px;
	background-color: white;
	border-radius: 40px 10px;
	box-shadow: 5px 5px 30px rgba(0,0,0,.3);
	border: thick solid #2A60B3;
}

h1 {
	font-size: 20px;
}

ul {
	list-style: none;
	padding: 0;
}

a {
	text-decoration: none;
	color: dodgerblue;
}
a:hover {
	color: darkmagenta;
}