		*{
 margin : 0;
 padding: 0;
 box-sizing: border-box;
}

#wrapper {
	max-width: 800px;
	height: 400px
	background: navy;
	margin: 0 auto;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

p {
	font-size: 7vw;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

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


.box {
	width: 300px;
	height: 300px;
	display: inline-block;
	margin: 3px;
	cursor: pointer;
}

#one {
	background: navy;
}



#two {
	background: forestgreen;
}

