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

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

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

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

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

/* CONTAINERS */

* {
  box-sizing: border-box;
}

body {
    background-image: url('/1images/links/eggnoredtumblr1.png');
    background-color: #F5F5F5;
    font-family: 'Victor Mono';
    color: #140128;
}

.container {
  background-color: #F5F5F5;
  width: 1000px;
  margin: auto;
  display: grid;
  grid-gap: 10px;
  grid-template:
    "header header header"
    "left main main"
    "footer footer footer"
    / 250px 2fr;
}

header {
    background-image: url('/1images/links/eggnoredtumblr1.png');
    color: #000;
    grid-area: header;
    text-align: center;
    font-family: 'Alagard';
    font-size: 3em;
    padding: 5px;
    
}


#left { 
    grid-area: left;
    padding: 5px;
    margin: 10px;
    border-right: 1px solid #48016D;
}

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

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

.box {
    padding: 10px;
    margin: 10px;
    border: 1px dashed #48016D;
    border-radius: 3px;
}

.box2 {
    padding: 10px;
    margin: 10px;
    border: 3px double #48016D;
    border-radius: 3px;
    width: 46%;
    height: 200px;
    overflow-y: scroll;
    display: inline-block;
    font-size: 0.75em;

}

/* TEXT AND FONTS AND FUN! */

p {
    padding: 3px;
}

h1 {
    color:#2E014B;
    font-family: 'Alagard';
    font-size: 2em;
    text-align: center;
}

h2 {
    background-color: #D99AF1;
    border-radius: 4px;
    color: #2E014B;
    font-family: 'Alagard';
    font-size: 1.75em;
    font-weight: normal;
    text-align: center; 
    margin: 5px;

}

h3 {

    color: #2E014B;
    font-family: 'Alagard';
    font-size: 1.5em;
    font-weight: normal;

}

/* LINKS */

a, a:visited, a:active {
    color:#48016D;
    padding: 1px;
    text-decoration: none;
    font-style: italic;
    text-decoration: underline wavy #48016D;
}

a:hover {
    transition: 0.5s;
    color:#D99AF1;
    text-decoration: underline wavy #48016D;
}

a.nav, a.nav:visited, a.nav:active {
    font-family: 'Victor Mono';
    color: #fff;
    background-color: #D99AF1;
    margin: 2px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    text-align: center;
    
}

a.nav:hover {
    color: #140128;
    background-color: #fff;
    text-align:center;
    text-decoration: none;
    display: block;
    transition: 0.5s;
}

/* LISTS */

ul {
    padding-left: 25px;
}

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