@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;
    margin: 4px;
    color: black;
}

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: 99px 452px 250px;
    grid-template-areas:
        "header header rightsidebar"
        "leftsidebar main rightsidebar"
        "footer footer rightsidebar";
    max-width: 800px;
    margin: 0 auto;
    padding-top: 150px;
}

.container a {
    color: cornflowerblue;
}

.container a:hover {
    color: slateblue;
}

.header { 
    grid-area: header;
    margin-left: -5px;
}

.leftsidebar {
    grid-area: leftsidebar;
    display: flex;
    flex-direction: column;
    width: 99px;
    margin: 0 auto;
}

.rightsidebar { 
    grid-area: rightsidebar;
}

.main { 
    grid-area: main;
    display: grid;
    grid-template-rows: 427px 100px;
    grid-template-columns: 140px;
    grid-template-areas: 
        "warningbox warningbox"
        "webrating enterarea";
}

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

.scrollbox {
    width: auto;
    overflow: auto;
    padding: 0px;
    background-color: white;
    text-align: justify;
    height: 250px;
}

.webrating {
    grid-area: webrating;
    margin-left: 1px;
}


.button {
    width: 88px;
    height: 31px;
    transition: transform 0.25s ease;
}

.button:hover {
    transform: scale(0.9);
}

.button:active {
    transform: scale(0.8);
}

.enterarea {
    grid-area: enterarea;
    display: grid;
    grid-template-rows: 75px 15px;
    grid-template-areas: 
        "enterspace"
        "gobackspace";
    margin: 0px auto;
    max-height: 100px;
}

.enterspace {
    grid-area: enterspace;
}

.gobackspace{
    grid-area: gobackspace;
}

.sitewarning {
    margin-left: 5px;
    margin-right: 5px;
    min-height: 363px;
}

.warningbox {
    grid-area: warningbox;
    background-color: white;
    border: 1px solid black; 
}

.webringbox {
    margin-left: -10px;
    margin-top: -10px;
    background-color: white;
    border: 1px solid black;
}

.webrings {
    display: flex;
    justify-content: space-evenly;
    flex-flow: column nowrap;
    overflow: auto;
    background-color: white;
    height: 240px;
    padding: 5px;
}
                    
.boxheader {
    background: linear-gradient(to bottom, white 1%, #ffd3e8 49%, #ffb5d8 51%, white 100%);
    border-bottom: 1px solid black;
    padding: 2px;
    text-align: center;  
}

.boxfooter {
    background: linear-gradient(to bottom, white 1%, #ffd3e8 49%, #ffb5d8 51%, white 100%);
    height: 5px;
    border-top: 1px solid black;
}

#goback {
    font-size: 0.85em;
    z-index: 99;
    transition: transform 0.25s ease;
}

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

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


#jude {
    width: 400px;
    height: 400px;
    position: absolute;
    margin-top: -28px;
    margin-left: -42px;
    z-index: 97;
    transition: transform 0.25s ease;
}

#jude:hover {
    transform: rotate(5deg);
}

#jude:active {
    transform: scale(0.95);
}

#pixeljude {
    position: absolute;
    margin-top: -57px;
    margin-left: -10px;
    z-index: 97;
    transition: transform 0.25s ease;
}

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

#enter {
    position: absolute;
    margin-top: -20px;
    margin-left: -28px;
    z-index: 98;
    transition: transform 0.25s ease;
}
    
#enter:hover { 
    transform: scale(0.9);
}

#enter:active {
    transform: scale(0.8);
}

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




