#wrapper {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}
#header {
	position: absolute;
	top: 50vh;
	left: 0;
	height: 0;
	width: 100vw;
	padding: 0;
	text-align: center;
	border-bottom: none;
	overflow: visible;
}
#logo {
	position: relative;
    top: -100px;
    left: 0;
    padding: 50px 30px 80px 30px;
    border: 2px solid #4f7222;
    border-radius: 90px;
    box-shadow: 5px 5px #ccdcb7;
}
#menu {
	display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#menu ul li {
	position: absolute;
	width: 0px;
	height: 0px;
	border-radius: 60px;
	border: 2px solid #4f7222;
	box-shadow: 5px 5px #ccdcb7;
	line-height: 110px;
	opacity: 0;
	overflow: hidden;
}
#menu ul li:hover {
	background-color: #ccdcb7;
}
#menu ul li a, #menu ul li a.visited {
	display: inline-block;
	width: 100%;
	padding-top: 33%;
    height: 100%;
	text-align: center;
	line-height: 20px;
}
#menu ul li.grow {
	width: 120px;
	height: 110px;
	opacity: 1;
	animation: grow .3s;
	transform-origin: center;
	transition: opacity .3s;
}
@keyframes grow {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.horizon {
	display: block;
	position: relative;
	top: 50vh;
	width: 100vw;
	height: 0;
	overflow: visible;
	text-align: center;
}
h1 {
	display: inline-block;
	line-height: 30px;
	height: 30px;
	position: relative;
	top: -10px;
	left: 0;
}