.container {
    overflow: hidden;
}

#main {
    min-height: 650px;
}

#database {}

.filterDiv {
    float: left;
    background-color: #004B25;
    color: #000A05;
    max-width: 400px;
    line-height: 2em;
    text-align: center;
    margin: 10px;
    display: none;
    border-radius: 0px 0px 10px 10px;
    /* Hidden by default */

}

@keyframes fadeIn {
    0% {
        opacity: 0;
        display: none;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* The "show" class is added to the filtered elements */
.show {
    display: flex;
    flex-direction: column;
    animation: fadeIn 1s;

}

/* Style the buttons */
.btn {
    border: none;
    outline: none;
    border: 3px solid #eefef0;
    border-radius: 10px;
    padding: 12px 16px;
    background-color: #25955C;
    cursor: pointer;
    margin: 0px 10px 0px 10px;
}

/* Add a light grey background on mouse-over */
.btn:hover {
    background-color: #004B25;
    color: #eefef0;
}

/* Add a dark background to the active button */
.btn.active {
    background-color: #000A05;
    color: #eefef0;
}

.inlinebtn {
    border: none;
    background: none;
    color: #feeeee;
    font-size: 16px;
}

.inlinebtn:hover {
    color: #25955C;
    cursor: pointer;
}

img {
    width: 100%;
}

#main {
    text-align: center;
    justify-content: center;
}

.database {
    text-align: center;

    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.filterDiv a {
    line-height: 0em;
}

@media only screen and (max-width: 800px) {
    .flex {
        flex-wrap: wrap;
        flex-direction: row;
    }

    #main {
        justify-content: center;
    }

    p {
        padding: 20px;
    }

    .myBtnContainer {
        max-width: 100%;
        padding: 10px;
    }

    .database {
        text-align: center;
    }

    .show {
        display: inline-block;
        float: none;
        line-height: normal;
    }
}
