html {
	margin-top: 30px;
	margin-left: 30px;
}

body {
	text-align: center;
	font-family: 'Roboto', sans-serif;
}

ul {
	line-height: 1em;
}

a {
	color: black;
	text-decoration: none;
}

#bold {
	font-weight: 500;
	font-size: 60px;
	margin-top: 260px;
}

#bold2 {
	font-weight: 500;
	font-size: 40px;
	margin-top: 50px;
}

/*.button {
	display: inline-block;
	width: 200px;
	height: 30px;
	margin: auto;
	margin-top: 300px;
}

#bold {
	font-weight: 500;
	font-size: 40px;
	margin-top: 280px;
}

div {
	position: absolute;
	left: 635px;
	top: 600px;
}*/

#button1 {
	border: 3px solid black;
	font-size: 35px;
	position: absolute;
	padding: 16px 24px;
	left: 600px;
	top: 300px;
	background-color: white;
}

#button1:hover {
	background-color: black;
	color: white;
	transition: background-color 1s ease;
	transition: color 1s;
}

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

#button1, #button2 {
	opacity:0;
	opacity: 1 \9; /*just in case ie*/
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;

	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	animation-delay: 0.5s;
}