/* ------ Override main-styles.css ------ */

h1, h2, h3, h4, h5, h6 {
  color: #bbbbbb;
}

/* ------------------------------------------------------------------------ */

/* ------ Other styles ------ */

a {
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

/* ------ text-align ------ */

.text-center{
    text-align: center;
}

/* ------ text-color ------ */

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

/* ------ min-height ------ */

.mh-100vh{
    min-height: 100vh !important;
}

/* ------ text-transform ------ */

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}