
        body{
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-size: 58%;
        background-color: #D1DED3;
        font-family: "Libre Franklin", sans-serif;
    }

    h2, #list-header, #contact-header {
        margin-top: 4rem;
        text-align: center;
        font-size: 3rem;
        color:#29445D
    }

    ul {
        list-style: none;
    }
    lh {
        font-family: "Libre Franklin", sans-serif;
    }

    p, li{
        font-size: 1.5rem;
        color:#29445D;
        padding: 1rem;
        word-wrap: break-word;
    } 
    p {
        padding: 0.5rem;
    }
    footer {
       
       padding: 4rem 0;
       background-color: #45767C;
       color: #29445D ;
    }

    footer ul {
        
        padding: 0;
        list-style: none;
        font-size: 1.8rem;
        margin-bottom: 0;
        display: flex;
        justify-content: space-around;        
        align-items: center;
        flex-wrap: nowrap;
    }
    
    footer li > a {

        text-decoration: none;
        color: #D1DED3;
        opacity: 0.8;
    }
    footer li > a:hover{
        color:#000;
        opacity: 1.0;
    }
    footer p {
        font-size: 1.2rem;
        text-align: center;
    }

    @media only screen and (max-width: 768px) {
        footer ul {
            display: block;
            margin: auto;
        }
    }

    