
        body {
            background-image: url("images/background.jpg");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            background-origin: content-box;
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            overflow: hidden;
            font-family: 'Lato', sans-serif;
            margin: 0;
            width: 100%;
            height: 100%;
            color: white;   
        }
        
        /* profile pic*/
        img[src="images/cb.jpeg"] {
            width: 200px;
            height: auto;
            margin: 12px;
            border-radius: 50%;
        }
  
        #body-container {
            width: 100%;
            height: 100%;
            margin: 24px 70px;
            display: flex;
            flex-direction: column;
        }
        
        #footer-container {
           display: inline-block;
           margin-top: 14px;
        }

        #footer-container a {
            font-size: 20px;
            font-weight: bold;
            color:rgb(255, 255, 255);
        }

        #footer-container a:hover {
            text-decoration: underline;
            text-decoration-color: rgb(41, 52, 100);
            text-decoration-thickness: 3px;
            color: rgb(41, 52, 100);
        }
        
        .link{
            margin-right: 28px;
        }

        .navbar {
            overflow: hidden;
            padding: 0px 70px;
            background-color: white;
        }
        
        .navbar a.link {
            float: left;
            color: black;
            text-align: center;
            text-decoration: none;
            font-size: 18px;
            line-height: 24px;
            border-radius: 4px;
            margin-right: 28px;
        }
        
        .navbar a.home {
            color:rgb(28, 38, 73);
            font-size: 25px;
            font-weight: bold;
        }
        
        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }
        
        .navbar a.active {
            background-color: rgb(37, 102, 168);
            color: white;
        }

        .home {
            margin: 14px;
        }
        
        .navbar-right {
            float: right;
        }
        
        /* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
        @media screen and (max-width: 500px) {
            .navbar a {
            float: none;
            display: block;
            text-align: left;
            }
            .navbar-right {
            float: none;
            }
        }