body, ul, li{
	margin: 0;
	padding: 0;
}

body {
	background-color: gray;
}

button {
	border: 0px;
	font-size: 30px;
	padding: 25px;
	border-radius: 10px;
	background: #4F8DF5;
	box-shadow: 0px 1px 5px black;
	color: white;
}
button:active {
	background: #FABD0C;
}

.container {
	width: 80%;
	margin: 0 auto;
}

#color-block {
	margin-top: 0px;
}

#color-block li{
	list-style: none;
	float: left;
	padding: 10px;
	border: 5px solid white;
	width: 7.2%;
	height: 180px;
	text-align: center;
	vertical-align: text-bottom;
	font-size: 70px;
	font-family: helvetica, arial , sans-serif;
	color: white;
	font-weight: bold;
	text-shadow: 0 2px 3px black;
}



#color-block li:hover {
	
	text-shadow: 0 5px 10px black;
}

@media (max-width: 1080px) {
	#color-block li {
	  content: 'test';
		height: 100px;
		width: 100px;
		font-size: 40px;
	}
	}
