.btn {
    border: none;
    background-color: inherit;
    padding: 14px 48px;
    font-size: 20px;
    cursor: pointer;
    display: inline-block;
    border-radius: 8px;
}
.btn2 {
    margin: 5px;
    border: none;
    background-color: inherit;
    padding: 14px 48px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    /*display: inline-block;*/
}
.success {
    color: green;
}
.success:hover {
    background-color: #04AA6D;
    color: white;
}
.info {
    color: rgb(0, 128, 255);
    text-shadow: 1px 1px #8d8d8d;
}
.info:hover {
    background: #2196F3;
    color: white;
    text-shadow: 1px 1px #000000;
}
.info2 {
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px #000000;
}
.info2:hover {
    background: white;
    color: #2196F3;
    text-shadow: 1px 1px #000000;
}
.warning {
    color: orange;
}
.warning:hover {
    background: #ff9800;
    color: white;
}
.danger {
    color: red;
}
.danger:hover {
    background: #f44336;
    color: white;
}
.default {
    color: black;
}
.default:hover {
    background: #e7e7e7;
}