html {
  scroll-behavior: smooth;
}

body {
  background-color: #D9D9D9;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
}

.dark-theme {
  background-color: #191919;
}

h1, h2, h3, h4 {
  font-family: "Unica One", sans-serif;
}

.navbar {
  position: fixed;
  width: calc(100vw - 1.5rem);
  max-width: inherit;
  z-index: 10;
  transition: all 0.3s;
}

.navbar.scrolled-down {
  opacity: 0;
}

.navbar-nav {
  flex-direction: row;
  flex-grow: 1;
  justify-content: space-between;
  margin: 30px 70px 20px;
}

.nav-item {
  list-style-type: none;
  font-family: "Unica One", sans-serif;
  font-size: 14px;
  white-space: nowrap;
}
.nav-item a:before {
  content: "(";
}
.nav-item a:after {
  content: ")";
}

@media (min-width: 768px) {
  .nav-item {
    font-size: 24px;
  }
}
.nav-item:not(:last-child):not(:first-child) {
  text-align: center;
}

.nav-item:last-child {
  text-align: right;
}

.nav-link {
  transition: all 0.3s;
  display: inline-block;
}

.dark-theme .nav-link {
  color: #D8B8FE;
}

.nav-item.active .nav-link, .nav-item:hover .nav-link {
  transform: scale(1.333);
}

.dark-theme .nav-item.active .nav-link, .dark-theme .nav-item:hover .nav-link {
  color: #9747FF;
}

/*# sourceMappingURL=main.css.map */