@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;
}

/* TEXT AND FONTS AND FUN! */

p {
    padding: 3px;
}

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

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

}

h3 {
    font-family: 'Alagard';
    color: #734A12;
    font-size: 1.5em;
    font-weight: normal;
}

/* LINKS */

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

a:hover {
    
    transition: 0.5s;
    color:#292929;
    text-decoration: underline wavy #734A12;
}

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

a.nav:hover {
    color: #B28647;
    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/media/smolpxl1.gif');
    margin-bottom: 5px;
}


/* IMAGES */

.books {
    width: 125px;
    height: auto;
    padding-right: 10px;
    margin: 0px;
}

/* HOVER EFFECTS BY HOVER EFFECTS - https://ianlunn.github.io/Hover/ */

/* Bob */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  width: 100px;
  height: auto;
  padding: 1%;
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}