:root {
  --colour-offwhite: #f6f2ef;
  --colour-navy: #262852;
}

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;
}

.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;
}

.footer {
  /*margin-top: auto;*/
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--colour-navy);
  color: white;

  p {
    text-align: center;
    color: white;
  }
}

@font-face {
  font-family: 'poiretone-regular';
  src: url('../fonts/POIRETONE-REGULAR.TTF');
}

@font-face {
  font-family: 'magical-nordicswash';
  src: url('../fonts/MAGICALNORDICSWASH_PERSONAL_USE_ONLY.OTF');
}

@font-face {
  font-family: 'geraldton-light';
  src: url('../fonts/GeraldtonLight.otf');
}

h2, h3, h4, h5, h6 {
  font-family: 'poiretone-regular', serif;
  color: var(--colour-navy);
  letter-spacing: 0.3rem;
}

p {
  font-family: 'geraldton-light', serif;
  font-size: 1.2rem;
}

a {
  font-family: 'poiretone-regular', serif;
  color: var(--colour-navy);
  font-weight: 800;
}

h1 {
  font-family: 'magical-nordicswash', serif;
  color: var(--colour-navy);
  text-decoration: underline;
  text-decoration-color: #d6c8a8;
  letter-spacing: 0.3rem;
}

body {
  background-color: var(--colour-offwhite);
}

.navbar-dark {
  background-color: var(--colour-navy);

  .navbar-toggler {
    border-color: var(--colour-navy);
  }

  .nav-link {
    color: var(--colour-offwhite);
  }
}
