.myButton-2 {
    display: inline-block;
    font-size: 15px;
    color: #000000;
    background: linear-gradient(to bottom, #C3D4EC, #0093DD);
    border: 2px double #0337FD;
    border-radius: 10px;
    font-family: cursive;
    transition: all 0.25s ease;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
    width: 200px;
    height: 50px;
}
.myButton-2:hover {
     color: #000000;
     background: linear-gradient(to right top, #FFFFFF, #C3D4EC);
     border-color: #0337FD;
}