html {
  scroll-behavior: smooth;
}
.navbar {
    background-color: #edf6ff !important
}
.navbar-brand {
    font-family: Cinzel, Seriff;
    color: #303131;
    text-decoration: none;
    font-size: 1rem;
    margin-right: 0px;
}

.nav-link {
    font-family: Cinzel, Sans-Seriff;
    color: #090909;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

#backToTopButton {
    transition: opacity .5s;
    bottom: 30px;
    right: 5px;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 5%;
    z-index: 1021;
    position: fixed;
    background-color: black;
    opacity: 0.5;
}

#backToTopButton:hover {
    opacity: 1;
}

#backToTopButton>a {
    color: white;
    text-decoration: none;
    font-size: 2em;
    height: 100%;
    width: 100%;
}

.nav-link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #000000;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.nav-link:hover:after {
  width: 100%;
  left: 0;
}

.dropdown-toggle:after {
  background: none repeat scroll 0 0 transparent !important;
}

.dropdown-menu {
    border: 0;
}

.navbar-toggler {
    font-size: 1rem;
    margin-left: auto;
    margin-right: 0;
}