html {
    margin: 0;
    padding: 0;
    font-size: 14px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-weight: 100;
    overflow-x: hidden;
    margin-bottom: 0px;
    background: #e5f9e5;
}

/* Bootstrap Adjustment */
.mb-3 {
    margin-bottom: 0!important;
}
p {
    margin-bottom: 0rem;
}
.border-bottom {
    border-bottom: 0.5px dotted black!important; 
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.2rem;
}

/* Tables Headers */
th {
    white-space: nowrap;
}



/*=============== FOOTER ===============*/
.footer {
    width: 100%;
    padding: 20px 10px;
    background: green;
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.footer a {
    color: white;
    font-size: 14px;
    text-decoration: none;
}
.footer a:nth-child(1) {
    padding: 15px 0;
}
.footer a:nth-child(2) {
    padding-bottom: 5px;
}

.footer a:hover {
    transition:0.5s;
    color: lightgray
}

.mediaFooter {
    padding: 2px 5px;
}

.mediaFooter img {
    width: 20px;
    height: 20px;
    border-radius: 20%;
    transition: 0.5s;
    margin: 10px 1px;
}

.mediaFooter img:hover {
    border-radius: 45%;
}




/* =========== Large Wide Screen format ============= */

@media (min-width: 1840px) {
    .contain {
        width: 75%;
        margin: 0 auto;
        box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    }
}

