body {
	margin: 0;
	padding: 0;
	font-family: 'Lato', sans-serif;
}
canvas {
	display: none;
}
img {
	width: 100%;
}
.arrowbutton {
	display: inline-block;
	padding: 13px 25px 15px 25px;
	background-color: #f3d51b;
	border-radius: 50px;
	color: black;
	text-decoration: none;
	border: none;
	outline: none;
	cursor: pointer;
	overflow-x: hidden;
	transition: .5s;
}
.arrowbutton:after {
	position: relative;
	left: 0px;
    content: "";
    display: inline-block;
    background: url("arrow.png") no-repeat top right;
    width: 15px;
    height: 7px;
    padding-left: 10px;
    vertical-align: middle;
    transition: .5s;
}
.arrowbutton:hover {
	padding: 13px 10px 15px 40px;
}
.arrowbutton:hover:after {
	left: 40px;
}
input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.uploadlabel {
	margin-top: 20px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}