    * {
        /* padding: 0; */
        margin: 0;
    }

    p {
        font-weight: normal;
        padding-inline: 20px;
        padding-block: 20px;
        text-align:  left;
            padding: 3px;
            font-size: 100%;
    }

    h5 {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    li.c {
        display: block;
    }

    h1 {
        display: block;
        font-size: 1.5em;
        font-weight: bold;
    }
    h4 {
        font-weight: normal;
    }
    
    h5 {
        color: rgb(0,117,168);
        font-size: 20px;
        font-weight: bold;
    }

    h6 {
        text-align: center;
        font-size: 15px;
    }

    th {
        padding-left: 20px;
    }

    header {
        background-color: #2f3031;
            padding: 30px;
            text-align: center;
            font-size: 35px;
            color: white;
            height: 150px;
    }

    .images {
        height: 150px;
    }

    ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: rgb(0,117,168);
        width: 100%;
    }

    li {
        float: left;
    }

    li a {
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

    li a:hover {
        background-color: #434343;
    }

    .links {
        display: block;
        text-align: left;
        padding: 6px 6px;
        text-decoration: none;
        color: rgb(0,117,168);
    }

    body {
        font-family: Arial, Helvetica, sans-serif;
        position: relative;
        max-width: 3000px;
    }

    /* Container for flex boxes */
    section {
        display: -webkit-flex;
        display: flex;
    }

    /* Style the content */
    article {
        -webkit-flex: 3;
        -ms-flex: 3;
        flex: 3;
        background-color: #f6f6f6;
        padding: 10px;
        margin-right: 160px;
        margin-left: 160px;
    }

    /* Style the footer */
    footer {
        background-color: #2f3031;
        text-align: left;
        color: #cfcfcf;
        padding-left: 130px;
        padding-right: 130px;
    }

    .topnav {
        display: none;
    }
    

    /* screens */
    @media only screen and (max-width: 1150px) {
        .banner {width: 600px; height: 400px;}
    }

    @media only screen and (max-width: 950px) {
        .banner {width: 350px; height: 225px;}
        article {
            margin-right: 100px;
            margin-left: 100px;
        }
    }

    /* For tablet */
    @media only screen and (max-width: 550px) {
        .banner {width: 350px; height: 225px;}
        article {
            margin-right: 25px;
            margin-left: 25px;
        }
        footer {
            padding-left: 25px;
            padding-right: 25px;
        }
    }
    

    /* For phone */
    @media only screen and (max-width: 445px) {

        .mobile-container {
            max-width: 480px;
            margin: auto;
            background-color: #555;
            height: 500px;
            color: white;
            border-radius: 10px;
          }
          
          .topnav {
            /* overflow: hidden; */
            background-color: rgb(0,117,168);;
            position: relative;
            display: block;
          }
          
          .topnav #myLinks {
            display: none;
          }
          
          .topnav a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            font-size: 25px;
            display: block;
          }

          .topnav i {
            color: white;
            padding: 2px 16px;
            text-decoration: none;
            font-size: 40px;
          }
          
          .topnav a.icon {
            display: block;
            position: absolute;
            right: 0;
            top: 0;
            margin-top: -7px;
          }
          
          .active {
            background-color: rgb(0,117,168);
            color: white;
            height: 30px;
          }

        nav {
            display: none;
        }

        .banner {width: 250px; height: 150px;}
        article {
            margin-right: 0px;
            margin-left: 0px;
        }
        .images {height: 100px; margin-left: -15px;}
        header {
            height: 100px;
        }
    }


    /* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
    @media (max-width: 600px) {

    }

