a{
	text-decoration: none;
	color: black;
}
main{
	position: relative;
	width: 60vw;
	margin: 0 20vw;
	font-family: "Roboto", sans-serif;
}
main h1{
	position: inherit;
	height: 10vh;
	width: inherit;
	margin-top: 5vh;
	text-align: center;
	font-size: 3em;
}
main p{
	font-size: 1.5em;
	text-align: center;
	margin: 5vh 0;
}
main table{
	position: inherit;
	width: 60vw;
	text-align: center;
}
main table img{
	position: inherit;
	height: 25vh;
	margin: 0 2vw;
	
	transform: scale(1, 1);
	transition: transform 1s;
}
main table img:hover{
	transform: scale(1.2, 1.2);
}
main table .links{
	display: block;
	position: relative;
	height: 15vh;
	line-height: 15vh;
	text-align: center;
	font-size: 2em;
	
	transform: scale(1, 1);
	transition: transform 1s;
}

main table .links:hover{
	transform: scale(1.2, 1.2);
}