img {
	max-width: 100%;
}
a.button {
	padding: .3em 1em;
	border-radius: 3px;
	color: #000;
	border: 2px solid #000;
	display: inline-block;
	width: 240px;
	margin-bottom: 20px;
	text-transform: uppercase;
	transition: all 0.5s;
}
a.button:hover {
	text-decoration: none;
}
a.button.black {
	background-color: #000;
	color: #fff;
}
a.button:after {
	display: inline-block;
	-webkit-transform: scale(0.5, 1); /* Safari and Chrome */
	-moz-transform: scale(0.5, 1); /* Firefox */
	-ms-transform: scale(0.5, 1); /* IE 9 */
	-o-transform: scale(0.5, 1); /* Opera */
	transform: scale(0.5, 1); /* W3C */
	content: ">";
	position: relative;
	margin-left: 2px;
	opacity: 0;
	right: -10px;
	font-size: 20px;
	transition: 0.5s;
}

a.button:hover:after {
  opacity: 1;
  right: 0px;
}