@charset "utf-8";
/* CSS Document */

body{margin: 0 auto;}

.wrapper{
	width: 100;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 30px;
	text-transform: uppercase;
	font-weight: bold;
}

ul{
	list-style: none;
	text-align: center;
	padding-left: 0;
	margin: 0;
}

li{
	width: 100%;
	padding: 75px 0;
}

li:hover{
	opacity: 0.5;
	transition: 0.5s;
}

li:nth-child(1){
	background: #ffc33c;
}

li:nth-child(2){
	background: #ff432e;
}

li:nth-child(3){
	background: #008bba;
}

li:nth-child(4){
	background: #d0c91f;
}

li:nth-child(5){
	background: #ff4c65;
}

a{
	text-decoration: none;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}
a:hover{
	transition: 0.5s;
	border: 3px solid #fff;
	border-radius: 5px;
	padding: 10px 50px;
}