
.container-infobox-left { /* display: flex; */
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 16px;
    padding: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: left;
    font-weight: normal;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #B9F2FF;
}

.Contact-Box-Header {
    font-style: italic;
}

header {
    background-color: #f4f4f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.site-title {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

    nav ul li a {
        text-decoration: none;
        color: black;
        font-weight: bold;
        text-decoration: none;
        font-family: "Roboto Condensed", sans-serif;
    }

        nav ul li a:hover {
        }

main {
    padding: 30px;
}

footer {
    text-align: center;
    padding: 15px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.navbar {
    padding: 20px;
    display: flex;
    gap: 50px;
    font-size: 20px;
    /* margin-left: 55%;
    */
}

    .navbar a {
        text-decoration: none;
        font-weight: bold;
    }

        .navbar a:Hover {
            color: white;
            font-size: 22px;
            transition: all 1s ease-out;
        }

.navbar-home a {
    margin-left: 5%;
    padding: 20px;
    display: flex;
    font-size: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .site-title {
        font-family: Archivo Black;
    }


    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        /* background-color: #e60340; */
        margin-top: 10px;
    }

        .nav-links.show {
            display: flex;
        }

        .nav-links a {
            padding: 10px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
}

.Bio-Heading, .Bio-Sub-Heading {
    color: black;
}

.Bio-Text {
    padding: 15px;
    line-height: 1.5;
}

.Articles-Box {
    box-shadow: 3px 7px 10px rgba(0, 0, 0, 0.1);
    margin: 5px;
    padding: 9px;
    border: 1px solid white;
    background-color: gold;
    width: 39%;
    /*    display:flex;*/
}

.Contact-Box {
    box-shadow: 3px 7px 10px rgba(0, 0, 0, 0.1);
    margin: 5px;
    padding: 22px;
    border: 2px solid white;
    background-color: white;
    width: 39%;
    /*    display:flex;*/
}

.DB-Title {
    text-decoration: none;
    color: black;
}

.li-GoldenRod {
    color: goldenrod;
}

.Article-button {
    background-color: white;
    padding: 10px;
    border: 0px;
    text-decoration: none;
}

    .Article-button:hover {
        background-color: grey;
        cursor: pointer;
    }


/* Mobile Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .Contact-Box {
        width: 80%;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
    }

        nav ul li {
            width: 100%;
        }

            nav ul li a {
                display: block;
                width: 100%;
                padding: 10px 0;
            }
}


