html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* 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;
}

a {
    color: #663399;
}

.btn-primary {
    color: #fff;
    background-color: #663399;
    border-color: #663399;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #663399;
    border-color: #663399;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

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: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

/* Mine
-------------------------------------------------- */
.hidden {
    visibility: hidden;
}

.bg-almostblack {
    background-color: #1E1E1E !important;
}

.bg-cookieheaderfooter {
    background-color: #f5dff0 !important;
}

.bg-cookiebody {
    background-color: #f5eff0;
}

.menutext {
    font-family: "Trebuchet MS", sans-serif !important;
    font-weight: bold !important;
    font-size: large !important;
    color: #663399 !important;
}

.headertext {
    font-family: Palatino, serif !important;
    font-size: x-large !important;
    color: #663399 !important;
}

.bodytext {
    font-family: "Trebuchet MS", sans-serif !important;
}

.footertext {
    text-align: end;
    font-style: italic;
    font-family: Baskerville, serif;
}

.yeet-img {
    height: 70vh;
    width: auto;
    -webkit-animation: fadein 2s;
    animation: fadein 2s;
}

.img-border {
    border: 2px solid antiquewhite;
}

a.text-dark:hover, a.text-dark:focus {
    color: lightpink !important;
}

a.alternate-hover:hover, a.alternate-hover:focus {
    color: #000080 !important;
}

td.padthai {
    padding: 6px;
}

tr:hover {
    background-color: mediumpurple !important;
}

tr.greyboy-header {
    background-color: lightslategrey !important;
}

tr.downsize-font {
    font-size: small;
}

.smoothfade {
    -webkit-animation: fadein 1s;
    animation: fadein 1s;
}

table.aesops-table {
    height: 80vh;
    width: 100%;
    overflow-y: auto;
    overflow-x: auto;
    box-shadow: 5px 10px #1e1e1e;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}