body {
	margin:0;
	padding:0;
	background-color:#EDEAED;
	font-family: Tahoma, sans-serif;
}
#mainwrap {
	width:100vw;
	height:100vh;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:row;
}
#leftCol p {
	text-align:right;
	font-style:italic;
	color:#AAA;
}
#rightCol {
	min-width:400px;
}
#rightCol .link {
	display:inline-block;
	width:50%;
	padding:10px 0px 15px 20px;
	border-radius:10px 50px 10px 50px;
	background-color:#F00;
	margin:10px 2px 10px 2px;
	text-decoration:none;
	color:#FEFEFE;
	font-size-adjust:0.72;
	margin-left:0px;
	outline:2px black solid;
	transition:margin-left 0.44s, background-color 0.1s ease-out;
}
#rightCol .link:hover {
	background-color:#C00;
	margin-left:5px;
}