.color-block{
	height: 60px;
	width: 60px;
	margin: 20px auto 0;
	font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition-duration: .4s;
}
.color-block:hover{
	transform: scale(1.1);
}
@media (min-width: 300px) {
	.color-block{
		height: 80px;
		width: 80px;
	font-size: 15px;
	}
}
@media (min-width: 450px) {
	.color-block{
		height: 130px;
		width: 130px;
	font-size: 18px;
	}
}

.color-block span {
	background: rgba(255, 255, 255, .6) !important;
}