* {
	padding: 0px;
	margin: 0px;
}
body {
	align-items: center;
	display: flex;
	justify-content: center;
	background-color: #ffe6c5;
	flex-direction: column;
	padding-top: 10vh;
}

/* Ripple effect */
.ripple {
	background-position: center;
	transition: background 0.8s;
}
.ripple:hover {
	background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%)
		center/15000%;
}
.ripple:active {
	background-color: #6eb9f7;
	background-size: 100%;
	transition: background 0s;
}

/* Button style */
button {
    margin:2vh;
	border: none;
	border-radius: 2px;
	padding: 12px 18px;
	font-size: 16px;
	text-transform: capitalize;
	cursor: pointer;
	color: white;
	background-color: #2196f3;
	box-shadow: 0 0 4px #999;
	outline: none;
}
