@font-face {
    font-family: Alagard;
    src: url(/2fonts/alagard.ttf);
}

@font-face {
    font-family: 'Victor Mono';
    src: url('/2fonts/VictorMono-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Victor Mono';
    src: url('/2fonts/VictorMono-Bold.ttf');
    font-weight: bold;
    font-style: bold;
}

@font-face {
    font-family: 'Victor Mono';
    src: url('/2fonts/VictorMono-Italic.ttf');
    font-weight: normal;
    font-style: italic;
}

/* CONTAINERS */

* {
  box-sizing: border-box;
}

body {
    background-image: url('/1images/projects/ocs/eggnoredtumblr3.gif');
    font-family: 'Victor Mono';
    color: #1A2323;
}

.container {
  
  width: 1000px;
  margin: auto;
  display: grid;
  grid-gap: 5px;
  grid-template:
    "header header"
    "left main"
    "footer footer"
    / 300px 2fr;
}

header {
    color: #5B8686;
    grid-area: header;
    text-align: center;
    text-shadow: -1px 0 #1A2323, 0 1px #1A2323, 1px 0 #1A2323, 0 -1px #1A2323;
    font-family: 'Alagard';
    font-size: 3em;
    padding: 5px;
    
}


#left { 
    grid-area: left;
    padding: 5px;
    margin: 10px;
}

#main { 
    grid-area: main;
    height:auto;
    padding: 5px;
    margin: 10px;
    
}

footer {
    grid-area: footer;
    text-align: center;
    padding: 5px;
    margin: 10px;
}

/* these are some fun containers teehee */

.box {
    border: ridge 10px #bb823d;
    box-shadow: 5px 5px #1A2323;
    background-image: url('/1images/projects/ocs/eggnoredtumblr2.png');
    padding: 5px;
    margin:  0px 3px 10px 3px;
}

table {
    font-size: 0.75em;
    width: 100%;
}

/* font shit */

p {
    padding: 0px 3px 0px 3px;
}

b {
    background: #CBABA4;
    font-weight: bold;
    border-radius: 2px;
    padding: 1px;
}

.warning {

    background-color: #FFD700;
    border-radius: 3px;
    padding: 2px;
    text-align: center;

}

h1 {
    font-family: 'Alagard';
    font-size: 2em;
    text-align: center;
    font-weight: normal;
}

h2 {

    font-family: 'Alagard';
    font-size: 1.5em;
    font-weight: normal;
    color: #701E22;
    border-bottom: 1px solid #701E22;

}

a, a:active, a:visited {
    text-decoration: none;
    color:#E41511;
}

a:hover {
    color:#701E22;
}

ul {
    padding-left: 25px;
}

li {
    list-style-image: url('/1images/projects/ocs/sugaatumblr2.gif');
    margin-bottom: 5px;
}

.frame {
    border: 1.5em solid;
    border-image-slice: 130 125 125 130;
    border-image-outset:0px 0px 0px 0px;
    border-image-repeat:stretch stretch;
    border-image-source:url("https://files.catbox.moe/16vx4u.png");
    text-align: center;
    width: 250px;
    
}