/* Add your CSS code here.

For example:
.red-class {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.greyscale {
	-webkit-filter: grayscale(75%);
	-moz-filter: grayscale(75%);
	-ms-filter: grayscale(75%);
	-o-filter: grayscale(75%);
	filter: grayscale(75%);
	filter: gray;
}

.border-radius {
	border-radius: 30px;
	border: 2px white;
	}
