/*5. FOOTER*/
footer {

    background-color: #008080;
    background-repeat: no-repeat;
    /*margin-top: 5rem;*/
    width: 100%;
    display: flex;
    justify-content: space-around;
    bottom: 0;
}

footer section {
    width: 20%;
    text-align: left;
    margin: 2rem;
    margin-top: 3rem;
}

footer h2,
footer a {
    color: white;
}

footer a {
    transition: color 200ms;
}

footer a:hover {
    color: #00cccc;

}

footer p {
    color: white;
    font-size: smaller;
}


#css-badge {
    float: right;
}

.middle-section {
    width: 10%;
    text-align: center;
}



section img {
    margin-top: 1rem;
    height: 30px;
    object-fit: contain;
}



@media only screen and (max-width: 1000px) {

    footer {
        flex-direction: column;
    }

    footer>section,
    footer>.middle-section {
        width: 100%;
        text-align: center;
        margin: 2rem 0 2rem 0;

    }



}