.button {
    padding: 10px 12px 10px 12px !important;
    background-color: red !important;
}

.button:hover {
    background-color: black !important;
}

.big-button {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 9px 10px !important;
    font-size: 17px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    margin: 6px 0 20px;
    color: #fff;
    cursor: pointer;
    display: block;
    background-color: #E92C2C;
    box-shadow: 0 5px 0 0 #BC1F1F;
    -webkit-box-shadow: 0 5px 0 0 #BC1F1F;
    -moz-box-shadow: 0 5px 0 0 #BC1F1F;
}

.big-button:hover {
    padding: 9px 10px !important;
    background-color: #F13B3B;
    text-decoration: none;
    color: #fff !important;
}

.big-button:visited {
    color: #fff !important;
}

@media (min-width: 346px) {
    .big-button {
        font-size: 19px
    }
}

@media (min-width: 374px) {
    .big-button {
        font-size: 26px
    }
}

.big-button:active {
    transform: translate(0px, 5px);
    -webkit-transform: translate(0px, 5px);
    box-shadow: 0 1px 0 0;
    -webkit-box-shadow: 0 1px 0 0;
    -moz-box-shadow: 0 1px 0 0
}