body {
    padding-top: 80px; /* add padding to the top of the body to make room for the navigation */
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F7F6F2;
    color: #2D2D2A;
}
li {
    margin-left: 50px;
}
section{
    font-family: Arial;
    font-size: 14.667px;
    line-height: 17.6px;
}
nav {
    background-color: #1f3f3f;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1; /* add a higher z-index value to make the navigation appear above the content */
}

nav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav a:hover {
    background-color: #8FBCBB;
    color: black;
}

main {
    margin-top: 20px; /* add margin to the top of the content to separate it from the navigation */
    padding: 20px; /* add padding to the content for better readability */
    background-color: #F7F6F2;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #1f3f3f;
    color: white;
    text-align: center;
    padding: 10px;
}

p, h1,h2 {
    margin-bottom: 20px; /* add margin to the bottom of the paragraphs */
    padding: 10px; /* add padding to the paragraphs for better readability */
}
p{
    margin-bottom: 18px;
    padding: 10px;
    font-size: 18px;
    line-height: 1.5;
}
h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #4F4F4F;
    color: #F7F6F2;
    text-align: center;
    padding: 10px;
}

footer a {
    color:white;
}
footer a:hover{
    color: #8FBCBB;
    text-decoration: underline;
}
footer a:first-child {
    margin-right: 20px;
}

footer a {
    border: 1px solid white;
    padding: 5px 10px;
    border-radius: 5px;
}

a {
    color: #7F7F7F;
    text-decoration: none;
}

a:hover {
    color: #2D2D2A;
}
@media (max-width: 390px) {
    nav a {
        display: none;
    }
    nav:before {
        content: "\2630";
        font-size: 28px;
        color: #fff;
        margin-right: 10px;
        float: left;
    }
    nav:hover a {
        display: block;
        float: none;
    }
}