.navbar {
  width: 100% !important;
  background: #1d2024 !important;
}

.navbar img {
  width: 100%;
  height: 100%;
  position: relative;
}

.navbar-brand {
  width: 50px;
  position: relative;
}

.navbar-item {
  text-align: center;
}

ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}

ul li a {
  color: #272727;
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 10px;
  margin: 0px 10px;
  position: relative;
  transition: all 0.5s;
}

.navbar-nav a:before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--uglygreen);
  border-width: 0 0 3px 3px;
  opacity: 0;
  transition: all 0.3s;
}

.navbar-nav a:hover:before {
  opacity: 1;
  bottom: -8px;
  left: -8px;
}

.navbar-nav a::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--uglygreen);
  border-width: 3px 3px 0 0;
  opacity: 0;
  transition: all 0.3s;
}

.navbar-nav a:hover:after {
  opacity: 1;
  top: -8px;
  right: -8px;
}

.navbar-nav a:hover {
  color: var(--niceorange) !important;
}

.navbar-nav a {
  font-weight: 400;
}

.card {
  background: rgba(27, 27, 27, 0.7) !important;
  min-height: 11em;
}

.whiteBtn {
  transform: scale(1);
  transition: all 1s;
  margin-top: 20px;
  font-size: 1.2em;
}

.whiteBtn:hover {
  transform: scale(1.1);
}

.footer {
  background-color: #272727 !important;
  color: white !important;
  text-align: center;
}

#footer {
  flex: 0 0 50px;
  margin-top: auto;
  position: relative;
}/*# sourceMappingURL=shared.css.map */