* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



@font-face {
    font-family: 'Arcade';
    src: url('/data/fnt/Arcade.ttf');
}
@font-face {
    font-family: 'HPLX8';
    src: url('/data/fnt/HP8LX.woff');
}
@font-face {
    font-family: 'HP100LX';
    src: url('/data/fnt/HP100LX.woff');
}
@font-face {
    font-family: 'Pixeloperator';
    src: url('/data/fnt/PixelOperator.ttf');
}



@keyframes money {
    0% {color: #ff6200;}
    50% {color: #fcf115;}
    100% {color: #ff6200;}
}
@keyframes info {
    0% {color: #0095ff;}
    50% {color: #22ffde;}
    100% {color: #0095ff;}
}
@keyframes other {
    0% {color: #ff0048;}
    50% {color: #a600c8;}
    100% {color: #ff0048;}
}



/* 
#        ##   #    # ##### 
#       #  #  ##   # #    #
#      #    # # #  # #    #
#      ###### #  # # #    #
#      #    # #   ## #    #
###### #    # #    # #####  `
*/

.land body {
    background-image: none;
    background-color: black;
    background-size: 300px;
    font-family: monospace;
}

.land .page {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.land .text-logo {
    font-family: 'HPLX8', monospace;
    font-size: 60px;
    margin-bottom: 40px;
    color: white;
}

.land .text-box {
    font-size: 18px;;
    padding: 20px;
    max-width: 400px;
    margin-bottom: 40px;
    color: white;
    background-color: #000000a6;
    outline: 2px dotted #ffffff43;
}

.land .button-accept {
    font-size: 34px;
    text-decoration: none;
    font-weight: 400;
    height: 20px;
    color: white;
    cursor: pointer;
}


/* 
#    #  ####  #    # ######
#    # #    # ##  ## #     
###### #    # # ## # ##### 
#    # #    # #    # #     
#    # #    # #    # #     
#    #  ####  #    # ###### 
*/

.home body {
    font-family: 'HPLX8', monospace;
    height: 100vh;
    overflow: auto;
    overflow-x: hidden;
    background-color: #ffffff;
}



nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 150px;
    height: 100vh;
    padding: 15px 15px 15px 15px;
    font-size: 16px;
    overflow-y: hidden;
    color: #fff;
    background-color: #000;
    border-right-style: groove;
    border-color: #b7cfff;
    border-width: 10px;
}
nav li {
    margin: 15px 0px 10px 0px;
    list-style: none;
    font-size: 14px;
}
nav a {
    color: #7ca7ff;
    font-size: 14px;
    text-decoration: none;
    border-style: solid;
    border-width: 0px;
    transition: padding 0.25s;
}
.inactive {
    color: white; 
    pointer-events: none;
}
.unavailable {
    pointer-events: none;
}
nav hr {
    border-style: dashed;
}

nav a:hover {
    border-width: 2px;
    padding: 5px;
}
.home #info:hover {
    animation: info 2s infinite;
}
.home #money:hover {
    animation: money 2s infinite;
}
.home #other:hover {
    animation: other 2s infinite;
}
.home #chat {
    color: red;
}
.home #chat:hover {
    background-color: rgb(182, 0, 0);
}



.home main {
    display: flex;
    flex-direction: column;
    max-width: 45vw;
    margin: 10px 0 0 150px;
    
    @media screen and (max-width: 1000px) {
        max-width: 100%;
    }
}

.home marquee {
    font-family: 'Arcade';
    height: 28px;
    border-radius: 3px;
    font-style: italic;
    font-size: 20px;
    color: #ab0000;
    margin: 5px 10px 15px 10px;
    transition: animation 0.5s;
}
.home marquee:hover {
    animation: money 2s infinite;
}

.text-content {
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.text-content h1 {
    background-color: black; 
    color: white; 
    padding: 5px; 
    margin: 10px 0 10px 12px; 
    display: inline-block; 
    font-size: 18px;
}

.text-content p {
    font-family: 'Pixeloperator';
    font-size: 24px;
    color: black;
    white-space: normal;
    text-wrap: break-word;
    max-width: 100%;
    margin: 0 0 20px 5px;
}



.text-block {
    background-image: linear-gradient(to right, #ffffff00, #0000000b,#ffffff00);
    margin: 0 0 0 10px;
}

.home #rawr-1 {
    float: left; 
    margin: 10px 20px 0 5px;
    width: 110px;
    height: 130px;
    outline-style: dashed;
    outline-offset: 2px;
    outline-width: 2px;
}



.home .background {
    position: fixed;
    right: 0;
    height: 100vh;
    width: 700px;
    background-image: url('/data/img/home/skelly.jpg');
    background-size: cover;
    @media screen and (max-width: 1024px) {
        opacity: 0.1;
    }
    z-index: -2;
}
.home .background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgb(255, 255, 255), transparent);
    pointer-events: none;
}






.fof body {
    padding: 40px;
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'HPLX8', monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 3px 3px 0 rgb(0, 0, 0);
}

.fof .bsod-container {
  background-color: #0000ff;  
  width: 100%;
  max-width: 800px;
  padding: 80px;
  border-style: solid;
  border-width: 7px;
  border-color: rgb(255, 255, 255);
}

.fof h1 {
  font-size: 48px;
  font-weight: 300;
  text-align: center;
  margin: 0px 0px 50px
}

.fof .link-home {
  font-size: 24px;
  color: white;
  cursor: pointer;
  margin: 40px 0 20px 0;
  text-decoration: none;
  transition: font-size 0.25s, margin 0.3s, color 0.3s;
}

.fof .link-home:hover {
  animation: other 2s infinite;
  font-size: 36px;
  margin: 40px 0 0 0;
}

.fof .anim {
    margin: 20px 0 0 0;
    width: 50px;
}




.writs h1 {
    margin: 20px 0 0 10px;
}

.writs #rawr-2 {
    float: left; 
    margin: 0px 15px 0 5px;
    width: 100px;
    height: 130px;
    outline-style: dashed;
    outline-offset: 2px;
    outline-width: 2px;
}

.writs .writ-link {
    margin: 10px 0 20px 15px;
    font-size: 18px;
    color: #0038a8;
    transition: color 0.2s;
}
.writs .writ-link:hover {
    color: red;
}




.writ-unit main {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.writ-unit .writ-linking {
    display: flex;
    flex-direction: column;
    margin: 10px 0 10px 0;
    font-family: 'Arcade';
    font-weight: 100;
    text-decoration: none;
    text-align: center;
    font-size: 42px;
    color: #7ca7ff;
    transition: color 0.25s;
}

.writ-linking-top {
    display: flex;
    flex-direction: row;
}

.writ-linking a:hover {
    color: #ff2b2b;
}

.writ-unit h2 {
    font-family: 'Pixeloperator';
    color: rgb(254, 254, 254);
    text-align: center;
    width: 100%;
    font-size: 32px;
    margin: 20px 0 20px 0;
}

.writ-unit p {
    font-family: 'Pixeloperator', monospace;
    color: #ffffff;
    text-align: left;
    width: 100%;
    font-size: 22px;
    line-height: 1.5;
}

.writ-unit .writ-subscript {
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    margin: 20px 0 20px 0;
}
.writ-text-content {
    background-color: #000000;
    width: 70vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.writ-text-block {
    width: 800px;
    padding: 30px 40px 25px;
    background-color: #141414;
    @media screen and (max-width: 900px) {
        width: 100vw;
    }
}

#mrs-1 {
    width: 120px; 
    float: left; 
    margin: 15px 20px 10px 0;
}
#mrs-2 {
    width: 120px; 
    float: left; 
    margin: 15px 20px 10px 0;
}
#mrs-3 {
    width: 120px; 
    float: left; 
    margin: 15px 20px 10px 0;
}
#mrs-4 {
    width: 120px; 
    float: left; 
    margin: 15px 20px 10px 0;
}

.writ-buttons {
    display: flex;
    justify-content: space-around;
    font-family: 'HPLX8', monospace;
    margin: 40px 0 20px 0;
    width: 100%;
}

#button-up {
    text-decoration: none;
    background-color: rgb(6, 6, 6);
    color: white;
    padding: 10px 15px;
    transition: box-shadow 0.15s;
    border-style: solid;
    border-width: 2px;
}
#button-up:hover {
    box-shadow: 0px 5px 0 red;
}
#button-back {
    text-decoration: none;
    background-color: rgb(6, 6, 6);
    color: white;
    padding: 10px 15px;
    transition: box-shadow 0.15s;
}
#button-back:hover {
    box-shadow: 0px 5px 0 rgb(90, 78, 255);
}
#button-forw {
    text-decoration: none;
    background-color: rgb(6, 6, 6);
    color: white;
    padding: 10px 15px;
    transition: box-shadow 0.15s;
}
#button-forw:hover {
    box-shadow: 0px 5px 0 rgb(90, 78, 255);
}