/* FONTS + BG */

/* unsure why, but the background only works if the body tag is up here! if anyone knows why, please lmk :) */

@font-face {
font-family: 'Determination Mono';
src: url('/fonts/DeterminationMono.woff');
}

@font-face {
font-family: 'Determination Sans';
src: url('/fonts/DeterminationSans.woff');
}

body {
    background-image: url(/images/tenna/stars.gif);
    font-family: "determination mono";
    color: #fff;
}

/* LAYOUT */

.container {  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-auto-columns: 1fr;
  gap: 10px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "main";
  width: 60em;
  height: 55em;
  margin: auto;
  padding: 0;
}

.main {  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 0.1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "inner inner inner"
    "inner inner inner"
    "inner inner inner";
  grid-area: main;
}

.inner {  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  grid-template-rows: 0.5fr 2.2fr 0.1fr;
  gap: 5px 5px;
  grid-auto-flow: row;
  grid-template-areas:
    "header header header"
    "side content content"
    "footer footer footer";
  grid-area: inner;
}

.header { 
    grid-area: header;
    align-content: center;
    margin: auto;
}

.side { 
    grid-area: side; 
    text-shadow: 0.67px 0.67px 0px #0f0f71;
    background-color: transparent;
    width: 100%;
    height: 100%;
    margin: auto;
    text-align: center;
    padding: 20px 20px;
    box-sizing: border-box;
    image-rendering: pixelated;
    font-size: 16.5px;
    line-height: 18px;
    color: #fff;
    border-image: url(
    'https://oliverspace.neocities.org/textbox.gif'
    ) 15 / 15px repeat;/* you can change the image border */
    border-width: 13px;
    border-image-slice: 27.6% fill;
    min-height: 84px;
    overflow: auto;
}

.content { 
    grid-area: content;
    text-shadow: 0.67px 0.67px 0px #0f0f71;
    background-color: transparent;
    padding: 15px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 0;
    box-sizing: border-box;
    image-rendering: pixelated;
    font-size: 16.5px;
    line-height: 18px;
    color: #fff;
    border-image: url(
    'https://oliverspace.neocities.org/textbox.gif'
    ) 15 / 15px repeat;/* you can change the image border */
    border-width: 13px;
    border-image-slice: 27.6% fill;
    min-height: 84px;
    text-align: left;
    overflow: auto;
}

.memes {
    max-height: 220px;
    height: 220px;
    overflow: auto;
    border: 2px solid white;
    margin: 0px 10px;
}

.footer { 
    grid-area: footer;
    margin: auto;
    align-content: center
}

}

/* ELEMENTS */

p {
text-indent: -9px;
width: 200px;
margin-left: 0;
padding-left: 74px;
margin-top: 15px;
display: block;
white-space: pre-wrap;
font-family: 'Determination Mono';
color: #fff;
text-align: justify; 
}

hr {
    color: #fff;
}

a {
    color: #fff;
}

#credit {
    text-align: center;
    margin-top: -5px;
}

#tennabow {
    scale: 2;
    image-rendering: pixelated;
    position: fixed;
    bottom: 90px;
    right: 60px;
}