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

.centered-title {
    color: slateblue;
    font-size: 32px; /* Equivalent to size 18 in <font> tag */
    text-align: center; /* Centers the text */
    margin: 20px 0;
}

.menu-bar {
    background-color: #00008B;
    overflow: hidden;
}

.menu-bar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu-bar ul li {
    display: inline;
}

.menu-bar ul li a {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 18px;
    text-align: center;
}

.menu-bar ul li a:hover {
    background-color: #575757;
}

.menu-bar .icon {
    display: none;
    text-decoration: none;  /* Removes underline from the three-bar icon */
}

/* Responsive styles */
@media screen and (max-width: 800px) {
    .menu-bar ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .menu-bar .icon {
        display: block;
        color: white;
        font-size: 24px;
        padding: 14px 20px;
        cursor: pointer;
        text-decoration: none;  /* Ensure underline is removed */
    }

    .menu-bar.responsive ul {
        display: flex;
    }

    .menu-bar ul li {
        display: block;
        text-align: left;
    }

    .menu-bar ul li a {
        padding: 10px;
        font-size: 16px;
        border-bottom: 1px solid #575757;
    }
}
