        /* ---- Style for entire screen ---- */
        html {
            background: #F0E68C;
        }

        /* ---- Style for body section ---- */
        body {
            border: 1px solid black; 
            max-width: 1000px;
            width: 95%;
            margin: 0 auto; 
            padding: 0.5em;    
            font-family: Arial, Helvetica, sans-serif;
            font-size: 1.4em;
            box-sizing: border-box;
        }

        /* ---- Background color for the logo ---- */
        header {
            background: #E4DB89;
            text-align: center;
            padding: 0.5em;
        }

        header img {
            max-width: 100%;
            height: auto;
        }

        /* ---- Background color for the navigation and spacing the links ---- */
        nav {
            background: #E4DB89;
            padding: 0.5em;
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1em;
        }

        /* ---- Navigation link styling ---- */
        nav a {
            text-decoration: none;
            color: inherit;
            padding: 0.3em 0.6em;
            border-radius: 3px;
            transition: background-color 0.3s ease;
        }

        nav a:hover,
        nav a:focus {
            background-color: rgba(0, 0, 0, 0.1);
            text-decoration: underline;
        }

        /* ---- Main content section ---- */
        main {
            padding: 1em 0;
        }

        /* ---- Images container ---- */
        .images-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1em;
            margin: 1em 0;
        }

        /* ---- Styling the images ---- */
        figure {
            flex: 1;
            min-width: 300px;
            margin: 0;
        }

        figure img {
            width: 100%;
            height: auto;
            border: 4px solid black;
            display: block;
        }

        /* Styling the caption under the image */
        figcaption {
            text-align: center;
            margin-top: 0.5em;
            font-size: 0.9em;
        }

        /* ---- Headings ---- */
        h2 {
            margin-top: 0;
        }

        h3 {
            margin-bottom: 0.5em;
        }

        /* ---- List styling ---- */
        .member-list {
            list-style-type: disc;
            padding-left: 2em;
        }

        .member-list li {
            margin-bottom: 0.5em;
        }

        .member-list a {
            color: inherit;
            text-decoration: underline;
        }

        .member-list a:hover,
        .member-list a:focus {
            text-decoration: none;
        }

        /* ---- Footer ---- */
        footer {
            background: #E4DB89;
            text-align: center;
            padding: 1em;
            margin-top: 2em;
        }

        /* ---- Mobile styles ---- */
        @media screen and (max-width: 768px) {
            body {
                font-size: 1.2em;
                width: 98%;
                padding: 0.3em;
            }

            nav ul {
                flex-direction: column;
                gap: 0.5em;
            }

            nav a {
                display: block;
                text-align: center;
            }

            .images-container {
                flex-direction: column;
            }

            figure {
                min-width: auto;
                width: 100%;
            }

            main {
                padding: 0.5em 0;
            }
        }

        @media screen and (max-width: 480px) {
            body {
                font-size: 1.1em;
                padding: 0.2em;
            }

            header {
                padding: 0.3em;
            }

            nav {
                padding: 0.3em;
            }

            figcaption {
                font-size: 0.8em;
            }

            footer {
                padding: 0.5em;
                font-size: 0.9em;
            }
        }