.myButton {
width: 200px;
height: 50px;
font-size: 20px;
color: #000000;
background: linear-gradient(to top right, #1dd862, #01af1b);
border: 2px solid #006c29;
border-radius: 10px;
font-family: arial;
transition: all 0.25s ease;
}
.myButton:hover {
color: #000000;
background: linear-gradient(to top right, #01af1b, #1dd862);
border-color: none;
}