
.background {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: 0.75s;
}

.nav {
	max-width: 440px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	
}

ul {
	list-style-type: none;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	justify-content: center;
	font-family: "Noticia Text", serif;
	font-weight: 400;
	font-style: normal;
	
}

li a {
	padding: 12px;
	float: left;
	width: 90px;
	text-align: center;
	font-size: 14pt;
	color: #edf5e1;
	text-decoration: none;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin-right: 10px;
	margin-left: 10px;
}



li a:hover i {
  transform: translateY(-10px);
}


li a .title {
  font-size: 0px;
  
}

li a:hover .title {
  transform: translateY(10px);
  font-size: 15px;
  transition: 0.5s;
}

li a.title:hover {
  transform: translateY(-10px);
}

.nav li:first-child a {
  background: #000 !important;
}

.nav li:nth-child(2) a {
  background: #000 !important;
}

.nav li:nth-child(3) a {
  background: #000 !important;
}

.nav li:nth-child(4) a {
  background: #8ee4af !important;
}


.nav li:first-child:hover {
 background: #dca23e;
 	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

}

.nav li:nth-child(2):hover  {
background: #8a0e04;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

}

.nav li:nth-child(3):hover  {
  background: #6d8a8e;
  	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.nav li:first-child:hover ~ .background {
 background: #dca23e

}

.nav li:nth-child(2):hover ~ .background {
background: #8a0e04

}

.nav li:nth-child(3):hover ~ .background {
  background: #6d8a8e;
}

.nav li:nth-child(4):hover ~ .background {
  background: #3d6540;
}

@keyframes illuminate {
  0% {
    transform: scale(0.7, 0.7);
    opacity: 0.7;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}