body{
	font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    color: rgb(255, 255, 255);
    text-decoration: none;
}
/*  ########## nav bar ##########  */
.navbar{
    margin: 0;
    box-sizing: border-box;

    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px;
    color: black;
    /* added */

    height: 80px;
    z-index: 2;
    background-color:rgb(73, 73, 73);
    font-size: 16px;
}

.navbar span img{
    transform: none;
}

.navbar span img:hover{
    box-shadow: none;
}


.nav-link{
    display: flex;
    align-items: center;
}

.nav-link li{
    margin: 0 30px;
    /* added */
    list-style: none;
    position: relative;
    align-items: center;
    text-align: center;
    align-self: center;
    width:5vw;

}
.nav-link a{
    width:5vw;
}

.nav-link a:hover{
    text-shadow: 0px 0px 5px white;
    color:white;
    background-color: #fc036b;
}

.logo{
    position: relative;
    align-items: center;
    text-align: center;
    align-self: center;
}

#active{
    color: #fc036b;
    text-decoration: underline;
    font-weight: bold;
}


/*  ########## nav bar ##########  */


/*  #############################################################################################  */


/*  ########## footer ##########  */

.footer{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   

    width: 100%;
    height: 120px;
    padding: 20px 80px;
    margin: 0;
    background: #000000;
    text-align: center;
    position: relative;

    margin: 0px auto;
}
.footer ul li{
    list-style: none;
    text-align: center;
    color: whitesmoke;
    margin: 8px auto;
    font-size: 16px;
}
.footer ul li a:hover{
    text-decoration: underline;
}


/*  ########## footer ##########  */

