html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: #eeeeee;
    margin-bottom: 60px;
    font-family: sans-serif;
    color: #000000;
}

.main-title {
    padding-top: 15px;
    padding-bottom: 15px;
}

.vertical-padding-content {
    padding-top: 15px;
    padding-bottom: 15px;
}

.sm-img {
    width:15%;
    height:15%;
    align-self: center;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
}

.selected {
    background-color: black;
    color: red;
}

.deselected {
    background-color: #088A68;
    color: #EDEFEE;
}

#box {
    height: 125px;
    width: 200px;
    border: 1px solid red;
    background: purple;
}

.txtBlack-bgLime {
    color: black;
    background-color: lime;
}

.txtLime-bgBlack {
    color: lime;
    background-color: black;
}

.txtYellow-bgBlack {
    color: yellow;
    background-color: black;
}

.txtGray-bgBrown {
    color: gray;
    background-color: brown;
}