html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 14px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Roboto Condensed', Arial, sans-serif !important;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
}

a {
    text-decoration: none;
}

.button {
    background-color: #00aeef;
    color: white;
    padding: 10px 20px;
    border: none;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 10px;
    transition-duration: 500ms;
}

    .button:hover {
        color: #0076a3;
        background-color: #d4d4d4;
        box-shadow: inset 0 3px 5px #c0c0c0;
    }
