﻿.myButton {
    background: linear-gradient(to bottom, #DDDDDD 5%, #707070 100%);
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    color: #000F1A;
    font-family: "Gilroy-Regular", sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 13px 32px;
    align-content: center;
    margin: 30px
}
    .myButton:hover {
        background: linear-gradient(to bottom, #0075BE 20%, #003A70 90%);
        color: #000F1A;
        text-decoration: none;
    }
    .myButton:active {
        position: relative;
        top: 1px;
    }