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 {
  margin: 0;
  position: relative;
  min-height: 100%;
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

header, footer {
  flex-shrink: 0;
}

span {
  line-height: 1;
  vertical-align: middle;
}

/* Customizing Trix */

.trix-button  {
  background-color: #ffffff !important;
}

trix-editor {
  background-color: black;
}

.site-background {
background-image:
    linear-gradient(to bottom, transparent 0%, black 100%),
    linear-gradient(to right,  transparent 0%, black 100%),
    url('/images/morytania.png');
  background-size:
    100% 100%,
    100% 100%,
    cover;
  background-repeat: no-repeat;
  background-attachment:
    fixed, fixed, /* pin both fades to the viewport */
    scroll;       /* let the photo scroll normally */
}

a:hover {
  text-decoration: underline dotted;
}

