.myButton {
    background-color : #4CAF50;
    border           : none;
    color            : white;
    padding          : 2px 2px;
    text-align       : center;
    text-decoration  : none;
    display          : inline-block;
    font-size        : 12px;
    font-weight      : bold;
    margin           : 4px 2px;
    cursor           : pointer;
    width            : 80px;
    height           : 30px;
}
.myButton:hover {
	color            : black;
	background-color : yellow;
}
.myButton:active {
	position         : relative;
	top              : 1px;
}
