@font-face {
    font-family: Byte;
    src: url('fonts/byte.ttf');
}

html,body {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

h1 {
    font-family: 'Byte';
    font-size: 1.75em;
    margin: 4px;
    color: white;
    text-shadow: 2px 2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, -2px -2px 0 #000, 2px 0px 0 #000, 0px 2px 0 #000, -2px 0px 0 #000, 0px -2px 0 #000;   
}

h2 {
    font-family: 'Byte';
    font-size: 1.25em;
    font-weight: normal;
    margin: 4px;
    color: black;
     text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px 0px 0 #fff, 0px 1px 0 #fff, -1px 0px 0 #fff, 0px -1px 0 #fff; 
}

h3 {
    font-family: 'Byte';
    font-size: 1em;
    font-weight: normal;
    margin: 2px;
    color: black;
    text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px 0px 0 #fff, 0px 1px 0 #fff, -1px 0px 0 #fff, 0px -1px 0 #fff; 
}

h4 {
    font-family: 'Byte';
    font-size: 1em;
    font-weight: normal;
    margin: 2px;
    color: black;
    text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px 0px 0 #fff, 0px 1px 0 #fff, -1px 0px 0 #fff, 0px -1px 0 #fff; 
}

body {
    font-family: "Byte", ms ui gothic, sans-serif;
    font-size: 1em;
    margin: 0;
    background-color: #D1ECFF;
}

p {
    margin: 10px;
    
}

hr.dotted {
    border-top: 1px dotted #000;
    border-bottom: 0;
    margin: 6px;
}

.container {  
    display: grid;
    grid-template-columns: 900px;
    grid-template-areas:
        "header"
        "main"
        "footer";
    max-width: 900px;
    margin: 0 auto;
    padding-top: 10px;
}

.container a {
    color: cornflowerblue;
}

.container a:hover {
    color: slateblue;
}

.header { 
    grid-area: header;
    display: flex;
    justify-content: center;
}

.main { 
    grid-area: main;
    padding: 10px;
    background-color: whitesmoke;
}

.charasection {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    grid-gap: 25px;
    padding: 25px;
}

.charasubheader {
    background-image: url(decor/BGS/tile/aesthetics/dots/tinydots.gif);
    border: 1px dotted black;
    padding: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.desc {
    background-color: white;
    padding: 5px;
    margin: 5px;
}

.charascroll {
    width: auto;
    overflow: auto;
    margin: 5px;
    padding: 0px;
    background-color: white;
    height: 251px;
}

.chara {
    height: 210px;
    width: 210px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border: 1px dotted black;
    background-image: url(decor/BGS/tile/aesthetics/dots/tinydots.gif);
}

.charaimg {
    display: block;
    max-height: 200px;
    max-width: 200px;  
}


.footer { 
    grid-area: footer;
    background: linear-gradient(to bottom, white 1%, #ffd3e8 49%, #ffb5d8 51%, white 100%);
    border: 1px solid black;
    padding: 2px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.box {
    background-color: white;
    border: 1px solid black; 
}

#goback {
    position: fixed;
    right: 0px;
    bottom: 0px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    transition: transform 0.25s ease;
}

#goback:hover {
    transform: scale(0.95);
}

#goback:active {
    transform: scale(0.9);
}

#rageful {
    position: absolute;
    margin-top: -80px;
    margin-left: 750px;
    transform: rotate(7deg);
    transition: transform 0.25s ease;
}

#rageful:hover {
    transform: rotate(7deg) scaleY(0.9);
}

#rageful:active {
    transform: rotate(7deg) scaleY(0.8);
}

#oneko {
    z-index: 99;
}

#cablemess {
    z-index: -100;
    position: fixed;
    height: 100%;
    width: 100%;
    background: url('decor/BGS/other/cablemess.png');
    background-repeat: repeat;
    background-size: auto;
    background-repeat: repeat-x;
    background-position: top;
}

#judecorner {
    background-image: url(decor/ARTWORK/ocs/jude/sidejude.png);
    background-repeat: no-repeat;
    position: fixed;
    bottom: 0px;
    left: 0px;
    height: 850px;
    width: 500px;
    z-index: -1;
}




