
    body {
        font-family: "Lucida Console", "Monaco", monospace;
        background-color: #236e87;
        color: #233c87;}
    a{
        text-decoration: none;
            color: #233c87;
        font-size: 1.3rem;
        font-weight: bold;
    }

    /* navbar styling */
    .navbar{
        display: flex;
        height: 5rem;
        justify-content: space-between;
        align-items: center;
        padding-top: 1rem;
        border-bottom: 2px solid #233C87;
        background-color: #23876E;
    }

    /* logo style  */
    .logo img{
        width: 500px;
        height: 60px;
        margin-left:1rem;
    }

    .hamburger-menu{
        padding-right: 1.5rem;
        cursor: pointer;
    }

    .hamburger-menu .line{
        display: block;
        width:2.5rem;
        height: 2px;
        margin-bottom: 10px;
        background-color: #233C87;
        cursor: pointer;
    }

    .nav-menu{
        position: fixed;
        width: 94%;
        top: 6rem;
        left: 18px;
            background-color: #23876E;
        font-weight: 600;

    }
    .nav-menu a{
        display: block;
        text-align: center;
        padding: 5px 0;
    }
    .nav-menu a:hover{
        background-color: #236E87;
    }

    .hide{
        display: none;
    }

    /* for Desktop view  */
    @media screen and (min-width:600px){
        .navbar{
            justify-content: space-around;
        }
        .nav-menu{
            display: block;
            position: static;
            width: auto;
            margin-right:20px;
            background: none;
        }
        .nav-menu a{
            display: inline-block;
            padding: 15px 20px;
        }
        .nav-menu a:hover{
            background-color: #236E87;
            border-radius: 5px;
        }
        .hamburger-menu{
            display: none;
        }
    }
