@font-face {
    font-family: IBM;
    src: url(/fonts/Web437_IBM_BIOS.woff);
}
@font-face {
    font-family: W95FA;
    src: url(/fonts/w95fa.woff);
}
html{
    height: 100%;
    background-blend-mode: screen;
    background-size: 20%;
    background-image: 
        url(/images/backgrounds/stars.gif),
        url(/images/backgrounds/stars3.gif);
    cursor: url(/images/cursors/Blade_Cursors/Blade_Normal.cur), auto;
    overflow: hidden;
}
body{
    min-width: 100%;
    margin: 0px;
    padding: 0px;
    padding-bottom: 20px;
    position: absolute;
    overflow: hidden;
    height: 100%;
}
.title{
    font-family: IBM;
    font-style: bold;
    font-size: 3.5vw;
    color: #910A67;
    text-align: center;
    text-shadow: #3C0753 .5vw 2px;
    user-select: none;
    position: relative;
    padding-top: 2%;
}
.box{
    background-color: black;
    color: aliceblue;
    font-family: W95FA;
    border-color: #3C0753;
    border-style: solid;
    position: relative;
    width: max-content;
}
    .box text{
        padding: 5px 5px 5px 5px;
        display: inline-block;
    }
    .box-title{
        background-color: #3C0753;
        color: #910A67;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        user-select: none;
    }
    .box img{
        max-width: 100%;
    }
    .box nav{    
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-around;   
        gap:20px;
        background-image: url(/images/backgrounds/Stars_03.gif  );
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 5px;
    }
        .box nav a:visited, a:link{
            color: white;
            text-decoration: none;
            width: 100%;
        }
        .box nav a:hover{
            font-style: italic;
        }
        .box a{
            display: flex;
            align-items: center;
            gap: 5px;
            max-width: fit-content;
        }
.flex-col{
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.flex-row{
    display: flex;
    flex-direction: row;
    margin-right: 5%;
    margin-left: 5%;
}
.computer{
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 100%;
}
.computer img{
    position: absolute;
    display: inline;
}
.content_box{
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    
}
.fake_terminal{
    margin: 1%;
    font-family: W95FA;
    display: flex;
    flex-direction: column;
    user-select: none;
    overflow-y: auto;
    height: 40em;
    gap: 2px;
}
.terminal.box{
    background-color: black;
    color: aliceblue;
    font-family: W95FA;
    border-color: #3C0753;
    border-style: solid;
    position: relative;
    overflow:hidden;
    width: 50em;
    height: fit-content;
}
.terminal.line{
    display: flex;
    flex-direction: row;
    gap: 1%
}
@keyframes flash {
  0% {
    visibility: visible;
  }
  49% {
    visibility: visible;
  }
  50% {
    visibility: hidden;
  }
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@keyframes _flashing {
    0%{
        color: rgba(255, 0, 0, 1);
    }
    80%{
        color: rgba(255, 115, 0, 255);
    }
    100%{
        color: rgba(0, 0, 0, 0);
    }
}
:root {
    --flashColor: _flashing 1s infinite;
}
.code_red{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    visibility: visible;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    background-color: black;
}

.code_red-topbottom{
    border-top: red;
    border-bottom: red;
    border-style: solid;
    display: flex;
    border-width: 30px;
    position: relative;
}
.code_red_right{
    background-image: repeating-linear-gradient(45deg, transparent, transparent 67px, red 67px, red 134px);
    height: 100%;
    width: 100%;
}
.code_red_left{
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 67px, red 67px, red 134px);
    height: 100%;
    width: 100%;
}
.code_red-middle{
    background-color: #000000;
    height: 100%;
    width: 100%;
    max-width: fit-content;
}
.marquee_error_text{
    font-family: OfficeCodePro-Light;
    animation: scroll 10s linear infinite;

}

@keyframes flashing_color {
    0% {

    }
}

.to_safety{
    position: absolute;
    height: 100%;
    width: 100%;
    text-align: center;
}
.to_safety a{
    background-image: repeating-linear-gradient(45deg, white, white 20px, red 20px, red 40px);
    color: rgb(255, 255, 255);
    -webkit-text-stroke: red;
    -webkit-text-stroke-width: .02em;
    font-family: Arial, Helvetica, sans-serif;
    border-color: red;
    border-style: solid;
    position: relative;
    font-size: 4em;
    top: 30%;
    padding: 1%;
}
.marquee {
    margin-top: 10px;
    --gap: .5rem;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    color: red;
    animation: scroll 4s linear infinite;
    height: 90%;
    text-align: center;
    font-size: 5em;
    line-height: 0;
    color: --var()
}
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.marquee--fit-content {
    max-width: fit-content;
}
