.button_rounded {
    background-color: #04AA6D;
    /* Green */
    border: none;
    color: white;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.button_rounded a {
    text-decoration: none;
    color: white;
}

.button_rounded:hover {
    background-color: blueviolet;
}