﻿nav h4
{
	font-family: "Urbanist";
	font-size: 18pt;
}
nav a:link
{
	color: #7d5559;
	text-decoration: none;
}
nav a:visited
{
	color: #7d5559;text-decoration:none; 
} 
nav a:active 
{
	color: #7d5559;text-decoration:none;
}
nav a:hover      
{ 
	color: #000;text-decoration:none;
}

.navbar {
    /* make it stick */
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    /* in front of all other elements */
    z-index: 99;
    /* set background */
    background-color: #fff;
    padding: 10px 5%;

    /* define flex */
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
}

.menu-item {
    display: inline-block;
    margin-left: 10px;
}

.bar {
    width: 20px;
    height: 3px;
    background-color: #7d5559;
    margin: 4px auto;
}

.menu-icon {
    display: none;
}

@media only screen and (max-width: 900px) {
    .navbar {
        flex-direction: column;
    }

    .title-container {
        width: 100%;
    }

    .menu-item {
        display: block;
        width: 100%;
        padding: 5px 0;
        text-align: end;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 10px;
        right: 5%;
    }

    .menu-icon:hover .bar {
        background-color: #000;
    }

    .nav-menu {
        display: none;
        width: 100%;
    }
    
    .active {
        display: block;
    }
}