        nav {
            display: flex;
            justify-content: space-between;
            background-color: rgb(5, 74, 74);
            padding: 10px;
        }

        nav a {
            color: rgb(183, 241, 241);
            text-decoration: none;
            margin: 0 10px;
            padding: 10px;
        }
        
        nav .selected {
            background-color: rgb(15, 91, 91);
        }
        
        a {
            color: rgb(183, 241, 241);
            font-weight: bold;
        }

        #menu-icon {
            display: none;
            cursor: pointer;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background-color: black;
            color: rgb(183, 241, 241);
            display: flex;
            flex-direction: column;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
        }

        .container {
            padding: 20px;
        }
        
        .newsContainer {
            background-color: rgba(5, 74, 74, .8);
            float:left;
            max-width: 400px;
            font-size:0.8em;
            border-radius: 3px;
            margin: 1em 2em;
        }
        
        header, footer {
            background-color: rgb(5, 74, 74);
            color: rgb(183, 241, 241);
            padding: 10px;
            width: calc(100% - 20px);
            text-align: center;
            position: fixed;
        }
        
        footer {
            justify-content: center;
            bottom: 0;
        }

        footer a {
            color: rgb(183, 241, 241);
            text-decoration: none;
            margin: 0 2em;
            float: left;
        }
        
        .footer-link {
            padding-top: 1em;
        }

        footer img {
            height: 50px; /* Adjust the height as needed */
            margin: 0 3em;
        }
        
        .main {
            overflow-y: auto; /* Enable vertical scrolling if content exceeds height */
            background-color: rgb(0, 0, 0);
            color: rgb(183, 241, 241);
            padding: 1em;
            position: fixed;
            height: calc(100% - 201px);
            left: 0;
            top: 95px;
        }

        @media only screen and (max-width: 600px) {
            nav {
                flex-direction: column;
                align-items: flex-start;
            }

            #menu-icon {
                display: block;
            }

            nav a {
                margin: 10px 0;
            }

            #menu {
                display: none;
            }
        }