button {
	background-color: cyan;
	border: none;
    color: black;
    margin: 30px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
	width: 220px;
	height: 60px;
	font-size: 20px;
	border-radius: 8px;
}

button:hover {
	background-color: darkcyan;
	color: white;
}