body {
    color: #7d7d7d;
    font-size: 2em;
}

form {
    color: #e8e8e8;
}

.mt-4 {
    margin-top: 4px;
}

.navbar-sticky-top {
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand, .navbar-nav>li>a {
    text-shadow: none;
}

nav.navbar {
    background-color: #5d5d5d50;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.2);
    border-radius: 0;
    backdrop-filter: blur(50px);
}

.nav > li > a {
   display: flex;
   gap: 10px;
   align-items: baseline;
   transition: all 100ms;
   position: relative;
}
.nav > li > a:after {
   content: '';
   position: absolute;
   inset: auto 0 0 0;
   height: 2px;
   background-color: #5e95c4;
   transition: all 300ms;
   transform: scale(0.0, 0.5);
   border-radius: 2px;
}

.nav > li > a:hover {
    background-color: #ffffff10;
    color: #5e95c4;
}
.nav > li > a:hover:after {
   transform: scale(1,1);
   color: #5e95c4;
}

.dropdown-toggle >.caret {
    transform: translateY(-2px);
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover,
.nav > li > a:focus
{
    border: none;
    background-color: rgba(0,0,0,0.3);
    color: #337ab7;
}

.navbar-nav > li > .dropdown-menu {
    border-radius: 10px;
    overflow: hidden;
    background-color: #44444491;
    margin-top: 5px;
    backdrop-filter: blur(30px);
    padding: 0;
    font-size: 2rem;
    font-weight: 200;
    border: 1px solid #555;
}

.dropdown-menu > li > a {
    color: #AAAAAA;
    transition: all 300ms;
    padding: 12px 70px 7px 20px;
}

.dropdown-menu li:not(:first-child) > a {
    border-top: 1px solid #555;
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
    background-color: #ffffff20;
    background-image: none;
    color: #FFF;
}

.navbar-brand {
    font-size: 2.5rem;
    height: auto;
    line-height: normal;
    padding-bottom: 6px;
}

.navbar-text {
    margin-bottom: 0px;
}

video {
    pointer-events: none;
}
