/* button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}
 */

button,
.button {
    background-color: #74809a;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
  
button:hover,
.button:hover {
    background-color: #576074;
}