/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    background-color: black;
    color: white;
    background-image: url("Backgrounds/BlackOmoriBackground.png");
    background-size: cover;
    font-family: "MunroSmall", monospace;
}

.box-header-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: auto;
    width: 800px;
}

.black-box {
    background-color: black;
    border: 2px solid purple;
    padding: 10px;
    width: fit-content;
    margin: 20px auto;
}

.black-box-purple-header {
    background-color: rgba(0, 0, 0, 0.5);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    min-width: 810px;
    border: 5px solid #b900ff;
    padding: 30px;
}

.black-box-purple {
    background-color: rgba(0, 0, 0, 0.5);
    border: 5px solid #b900ff;
    padding: 20px;
    margin: auto;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    min-width: 240px;
}

.navbar-small {
    background-color: #000;
    border: 5px solid #cc00cc;
    border-style: double;
    padding: 8px;
    margin: auto;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.info-scrollbox {
    height: 249px;
    width: 172px;
    border: 4px solid #ffffff;
    background-color: #000000;
    overflow: auto;
    overflow-x: hidden;
    border-style: double;
    border-radius: 5px;
    padding: 5px;
}

.info-scrollbox::-webkit-scrollbar-thumb {
    background-color: #cc00cc;
}

.centered-header {
    text-align: center;
    color: #b900ff;
    font-size: 30px;
    letter-spacing: 20px;
    font-family: "Munro", monospace;
}

.centered-header-subtext {
    text-align: center;
    color: white;
    font-size: 20px;
    letter-spacing: 10px;
    font-family: "MunroSmall", monospace;
}

.centered-header-subtext-outline {
    text-align: center;
    font-size: 20px;
    letter-spacing: 10px;
    font-family: "MunroSmall", monospace;
    color: white;
    text-shadow: -1px -1px 0 #00FFFF, 1px -1px 0 #00FFFF, -1px 1px 0 #00FFFF, 1px 1px 0 #00FFFF;
}

.white-munro {
    text-align: center;
    color: white;
    font-size: 15px;
    letter-spacing: 5px;
    font-family: "MunroSmall", monospace;
}

@font-face {
    font-family: "Munro";
    src: url("./Fonts/Munro/munro.ttf") format("truetype");
}

@font-face {
    font-family: "MunroSmall";
    src: url("./Fonts/Munro/munro-small.ttf") format("truetype");
}

#fontFlash {
    background-color: black;
    color: purple;
    font-size: 20px;
    font-family: Arial;
}

#fontDreamy {
    background-color: black;
    color: purple;
    font-size: 20px;
    font-family: Arial;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px
}

::-webkit-scrollbar-track {
    background: black
}

::-webkit-scrollbar-thumb {
    background: #cc00cc;
}

::-webkit-scrollbar-thumb:hover {
    background: #00FFFF;
}

.centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.smallTextNote {
    font-size: x-small;
}

.text-style-positive {
    color: rgb(0, 255, 0);
}

.text-style-neutral {
    color: yellow;
}

.text-style-negative {
    color: red;
}

.text-style-special {
    color: cyan;
}

.marqueeTopHeader {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 7.5px;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
}

.marquee-content-delay1 {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
    animation-delay: 7.5s;
}

.marquee-content-delay2 {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
    animation-delay: 15s;
}

.imgScreenStacked {
    position: absolute;
    top: 25px;
    left: 25px;
}

.imgScreenStacked1 {
    z-index: 1;
}

.imgScreenStacked2 {
    z-index: 3;
}

.imgScreenStacked3 {
    z-index: 5;
}

.glowing-header {
    font-size: 75px;
    letter-spacing: 10px;
    text-shadow: 1px 1px 2px purple, 0 0 1em purple, 0 0 0.2em purple;
    font-family: "Munro", monospace;
}

.glow {
    text-align: center;
    animation: glow 1s ease-in-out infinite alternate;
}

.glow-rainbow {
    -webkit-animation: glow-rainbow 2.5s infinite linear;
    animation: glow-rainbow 2.5s infinite linear;
}

@-webkit-keyframes glow-rainbow {
    0%, 100% { text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff0000; }
    20% { text-shadow: 0 0 10px #ff7f00, 0 0 20px #ff7f00, 0 0 40px #ff7f00; }
    40% { text-shadow: 0 0 10px #ffff00, 0 0 20px #ffff00, 0 0 40px #ffff00; }
    60% { text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 40px #00ff00; }
    80% { text-shadow: 0 0 10px #0000ff, 0 0 20px #0000ff, 0 0 40px #0000ff; }
}

@keyframes glow-rainbow {
    0%, 100% { text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff0000; }
    20% { text-shadow: 0 0 10px #ff7f00, 0 0 20px #ff7f00, 0 0 40px #ff7f00; }
    40% { text-shadow: 0 0 10px #ffff00, 0 0 20px #ffff00, 0 0 40px #ffff00; }
    60% { text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 40px #00ff00; }
    80% { text-shadow: 0 0 10px #0000ff, 0 0 20px #0000ff, 0 0 40px #0000ff; }
}

.glow-purple-pink {
    -webkit-animation: glow-purple-pink 2s infinite alternate ease-in-out;
    animation: glow-purple-pink 2s infinite alternate ease-in-out;
}

@-webkit-keyframes glow-purple-pink {
    from { text-shadow: 0 0 10px #fff, 0 0 20px #e60073, 0 0 40px #e60073; }
    to { text-shadow: 0 0 20px #fff, 0 0 30px #b900ff, 0 0 50px #b900ff; }
}

@keyframes glow-purple-pink {
    from { text-shadow: 0 0 10px #fff, 0 0 20px #e60073, 0 0 40px #e60073; }
    to { text-shadow: 0 0 20px #fff, 0 0 30px #b900ff, 0 0 50px #b900ff; }
}

.strokeblack {
    color: white;
    background-color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.strokewhite {
    filter: drop-shadow(0.5px 0 0 white) drop-shadow(0 0.5px 0 white) drop-shadow(-0.5px 0 0 white) drop-shadow(0 -0.5px 0 white);
}

.strokecyan {
    color: white;
    background-color: white;
    text-shadow: -1px -1px 0 #00FFFF, 1px -1px 0 #00FFFF, -1px 1px 0 #00FFFF, 1px 1px 0 #00FFFF;
}

.strokepurple {
    color: white;
    background-color: white;
    text-shadow: -1px -1px 0 #b900ff, 1px -1px 0 #b900ff, -1px 1px 0 #b900ff, 1px 1px 0 #b900ff;
}

.text-body {
    background-color: #000000;
    color: solid #b900ff;
    padding: 20px;
}

.horizontal-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    margin: 0 10px;
    color: white;
}

a:link {
    color: #00CCCC;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: #00CCCC;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: #00FFFF;
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: #9900FF;
    background-color: transparent;
    text-decoration: underline;
}

/* Display */
.display {
    height: auto;
    overflow: auto;
    text-align: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.button-default {
    background-color: rgb(204, 0, 204);
    padding: 2px;
    font: inherit;
    color: white;
    border-width: 2px;
    border-color: white;
    width: 150px;
    text-align: center;
    position: relative;
}

.button-default::before,
.button-default::after {
    content: '';
    position: absolute;
    opacity: 0;
}

.button-default::before {
    content: '>';
    left: 10px;
}

.button-default::after {
    content: '<';
    right: 10px;
}

.button-default:hover::before,
.button-default:hover::after {
    opacity: 1;
}

.button-textOnly {
    border: inherit;
    background-color: inherit;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

.button-textOnlyHover {
    border: inherit;
    background-color: inherit;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

.button-textOnlyHover:hover {
    border: inherit;
    background-color: inherit;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    text-shadow: 1px 1px 2px white, 0 0 1em white, 0 0 0.2em white;
}

.companion {
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
    transition: bottom 0.3s;
}

.companionBox {
            position: fixed;
            bottom: 0;
            right: 0;
            width: 175px;
            height: 175px;
            display: flex;
            justify-content: center;
            align-items: center;
            right: 30px;
            text-align: center;
        }

.dialogueBox {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0);
    border: 5px solid #cc00cc;
    border-style: double;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
    overflow: hidden;
    max-height: 150px;
    overflow-y: auto;
}

.dialogueText {
    margin: 0px;
    margin-bottom: 5px;
    padding: 0;
}

.button-dialogueBox {
    background-color: rgb(204, 0, 204);
    padding: 2px;
    font: inherit;
    color: white;
    border-width: 2px;
    border-color: white;
    width: 75px;
    text-align: center;
    position: relative;
    max-height: 150px;
    overflow-y: auto;
}

.button-dialogueBox::before,
.button-dialogueBox::after {
    content: '';
    position: absolute;
    opacity: 0;
}

.button-dialogueBox::before {
    content: '>';
    left: 10px;
}

.button-dialogueBox::after {
    content: '<';
    right: 10px;
}

.button-dialogueBox:hover::before,
.button-dialogueBox:hover::after {
    opacity: 1;
}