@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/thisisapixelurltumblr.png');
    background-color: #F5F5F5;
    font-family: 'Victor Mono';
    color: #1A202D;
}

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

header {
    color: #E41511;
    grid-area: header;
    text-align: center;
    text-shadow: -1px 0 #1A202D, 0 1px #1A202D, 1px 0 #1A202D, 0 -1px #1A202D;
    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: 1px dashed #1A202D;
    border-radius: 3px;
    box-shadow: 5px 5px #1A202D;
    background-image: url('/1images/projects/ocs/eggramentumblr1.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;
}