.navbar-spacing{
    height: 4em;
    width: 100%;
}
.navbar-nav{
    text-align: center;
    margin-top: 4em;
}
.navbar-links{
    width: 100%;
    max-width: 500px;
}
.navbar-backdrop{
    position: fixed;
    width: 100%;
    height: calc(100% - 4em);
    bottom: 0;
    right: 0;
    background-color: rgba(80, 35, 80, 0.45);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}
.nav-item h4{
    color: white;
}
.nav-link:hover{
    opacity: 0.6;
}
.navbar{
    background-color: rgba(80, 35, 80, 0.6);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    padding: 0.5em 1.667em;
    text-align: center;
    height: 100%;
    max-height: 4em;
}
.navbar h4{
    color: white;
    text-align: center;
    margin: auto;
    width: auto;
    font-family: 'TradeWinds-Regular';
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.navbar-social{
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    line-height: normal;
    font-size: 14px;
    text-align: center;
    color: white;
}
.burgerContainer{
    display: inline-block;
    cursor: pointer;
}
.bar1, .bar2, .bar3{
    width: 35px;
    height: 3px;
    background-color: white;
    margin: 8px 0;
    transition: 0.35s;
}
.change .bar1{
    transform: translate(0, 11px) rotate(-45deg);
}
.change .bar2{
    opacity: 0;
}
.change .bar3{
    transform: translate(0, -11px) rotate(45deg);
}
.burgerButton{
    background-color: rgba(0, 0, 0, 0);
    border: none;
}
.navbar-collapse{
    opacity: 0;
    transition: all 0.15s;
}
.navbar-collapse.show{
    opacity: 1;
    transition: all 0.15s;
}
#navbarToggleExternalContent{
    z-index : 10000;
}