/* this css file is for about.html */

/* =========== Formating for about sections ============== */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

section {
    max-width: 800px;
    margin: 2em auto;
    padding: 1em;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: rgb(38, 105, 187);
    line-height: 1.5;
}

p {
    line-height: 1.6;
}

.bullet {
    margin-top: 10px;
    margin-left: 10px;
    font-size: medium;
}

/* Make sure the nav bar is not hidden when this page loads */
#navBar {
    display: inline-block
}