body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 1rem;
}

.logo {
    color: #E9967A;
    font-size: 2.5rem;
    font-family: Brush Script MT, Brush Script Std, cursive ;
}

.logo a {
    color: #E9967A;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li a {
    color: #E9967A;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.nav-links li a:hover {
    background-color: #f8dcd3;
}

.nav-links li.active a {
    /* Add styles for the active link */
    color: #f8dcd3; /* Change to your preferred color */
    font-weight: bold; /* or any other styles you want */
}


@media only screen and (max-width: 600px) {
    /* Add responsive styles here */
    nav {
        flex-direction: column;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: row;
        text-align: justify;
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
    }

    /* Add more responsive styles as needed */
}

