.classic_button {
    background: #d13636;
    font-family: OpenSans-Semibold;
    border: 0px;
    font-size: 15pt;
    padding: 10px 20px 10px 20px;
    outline: none;
    color: white;
    margin: 10px;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
    transition: 1s background;
}

.classic_button:hover {
    background: #f26f6f;
    transition: 1s background;
    cursor: pointer;
}

.classic_button:active {
    background: #c92020;
    transition: 1s background;
}
