@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Bitcount+Grid+Single+Ink:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #f8f9fa;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem purple;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

a, a:visited {
    color: purple;
    text-decoration: none;
}

.btn-primary {
    background-color: purple !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: darkmagenta;
}

.navbar-dark {
    background-color: darkgray
}

footer {
    background-color: darkgray;
}

a:hover {
    color: #340534;
}

ul li .nav-link:hover {
    color: black !important;
}

.nav-link {
    color: #313539 !important;
}
.nav-link.active, .nav-link.active:hover {
    background-color: purple !important;
    color: white !important;
}
