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 #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: #000;
  color: #fff;
  font-family: 'Lato', sans-serif;
}

.font-cinzel {
  font-family: 'Cinzel', serif;
}

.text-gold {
  color: #d4af37 !important;
}

.border-gold {
  border-color: #d4af37 !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-gold {
  background-color: #d4af37 !important;
  color: #000 !important;
}

.btn-gold {
  background-color: #d4af37;
  color: #000;
  border: 1px solid #d4af37;
}

.btn-gold:hover {
  background-color: #b4941f;
  color: #000;
  border-color: #b4941f;
}

.btn-outline-gold {
  color: #d4af37;
  border-color: #d4af37;
}

.btn-outline-gold:hover {
  background-color: #d4af37;
  color: #000;
}

/* Chat Message Bubbles */
.message-bubble-me {
  background-color: #d4af37 !important;
  color: #000 !important;
}

.message-bubble-other {
  background-color: #212529 !important;
  /* Darker grey */
  color: #fff !important;
  border: 1px solid #6c757d;
}