﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 4.5rem;
    background-color: #3b3b3b;
    color: #f8f8f8;
    padding-top: 4.5rem;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

.jumbotron {
    background-color:#4d5052;
}

.journal-limpet.toast-holder {
    position: fixed;
    bottom: 4em;
    right: 0.5em;
    left: 0.5em;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap-reverse;
}

.journal-limpet .toast {
    background-color: rgba(64, 64, 64, 0.75);
}

    .journal-limpet .toast .toast-header {
        background-color: rgba(64, 64, 64, 0.75);
        color: #f8f8f8;
    }

    .journal-limpet .toast .close {
        color: #fff;
        text-shadow: unset;
    }

.terminal-window {
    background-color: #212529;
    padding: 10px;
    max-height: 55vh;
    min-height: 55vh;
    overflow: hidden;
}

.terminal-line {
    animation: terminal-entry 0.5s;
}

@keyframes terminal-entry {
    0% { opacity: 0; background-color: #456e89; }
    100% { opacity: 1; }
}