:root {
    --red: rgb(229, 41, 5);
    --default-font: "Courier New", monospace;
}
a {
    text-decoration-color: rgb(189, 52, 52);
    transition: .2s;
}
.nav {
    list-style-type: none;
    margin: auto;
    padding: 0;
    text-align: center;
}


a:hover {
    color: red;
  text-shadow: 0 0 5px orangered;
}


@font-face {
    font-family: "Strangethings";
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/Benguiat Cyr Bold.ttf");
}

.nav li {

    display: inline;
    font-family: "Strangethings", serif;
}

#music-button {
    width: 1.5rem;
    height: 1.5rem;
  border: 0;
  background: transparent;
  box-sizing: border-box;
    position: fixed;
    left: 1rem;
    bottom: 1rem;
  border-color: transparent transparent transparent var(--red);
  
  border-color: transparent transparent transparent var(--red);
  transition: 100ms all ease;
  cursor: pointer;
  display: flex;
  align-items: center;

  border-style: solid;
  border-width: .75rem 0 .75rem 1.5rem;
  filter: drop-shadow(0 0 5px orangered)
}

.paused{
    
    border-style: double !important;
    border-width: 0px 0 0px 1.5rem !important;
}

#music-button:hover {
    transform: scale(1.1);
}

#music-button:active {
    transform: scale(1.2);
}

#music-button:hover #music-label {
display: block;
opacity: 1;
    animation: fade-in forwards .2s linear;
}

h1 {
    font-family: "Strangethings", serif;
    color: var(--bg-color);
    text-shadow: var(--red) 2px 0px 0px, var(--red) 1.75517px 0.958851px 0px, var(--red) 1.0806px 1.68294px 0px, var(--red) 0.141474px 1.99499px 0px, var(--red) -0.832294px 1.81859px 0px, var(--red) -1.60229px 1.19694px 0px, var(--red) -1.97999px 0.28224px 0px, var(--red) -1.87291px -0.701566px 0px, var(--red) -1.30729px -1.51361px 0px, var(--red) -0.421592px -1.95506px 0px, var(--red) 0.567324px -1.91785px 0px, var(--red) 1.41734px -1.41108px 0px, var(--red) 1.92034px -0.558831px 0px, 0.3em 0.3em 2em rgba(255, 68, 0, 0.425);
    text-transform: uppercase;
}

h2, h3,
.st-font {
    font-family: "Strangethings", serif;

}

.st-red {
    color: var(--red);
}

.nav li:not(:last-child)::after {
    content: "|";
    color: gray;
}

header {
    padding: 2rem;
}

.footnote {
    position: relative;
}

p>sup{
    margin: 0;
    padding: 0;

}
.ktooltip {
    display: inline;
    text-indent: 0em !important;
    color: orangered !important;
}

blockquote {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.ktooltiptext {
    display: none;
    visibility: hidden;
    background: #fff;
    color: black;
    border-radius: 6px;
    padding: 5px 5px;
    border: 2px solid grey;
    line-height: normal;
    text-decoration: none;
    position: absolute;
    text-align: left;
    z-index: 1;
    text-indent: 0em !important;
}

.ktooltip:hover~.ktooltiptext {
    display: block;
    visibility: visible;
    animation: fade-in forwards .2s linear;
}

@keyframes fade-in {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}
@keyframes fade-out {
    0% {
        display: block;
        opacity: 1;
    }

    99% {
        display: block;
        opacity: 0;
    }
    100% {
        display: none;
        opacity: 0;
    }
}

hr {
    color: rgb(124, 33, 33);
}
.selected {
    background-color: var(--red);
    padding: .4rem;
    display: inline;
    color: white !important;
}

.footnotes li p,
#credits p {
    text-indent: 0 !important;
}

.footnotes,
.footnotes li p{
    font-size: small !important;

}


#credits {
    text-align: center;
}

 /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

.ktooltiptext {    
    max-width: 90vw;
}

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    

.ktooltiptext {    
    left: calc((100vw)/10);
    right: calc((100vw)/10);
    max-width:100vw;
}

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

.ktooltiptext {    
    left: calc((100vw)/4);
    right: calc((100vw)/4);
    max-width: calc(100vw);
}


}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}