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

/* BOXES */

body {
    background-image: url('/1images/lukasz-szmigiel-2ShvY8Lf6l0-unsplash.jpg');
    font-family: 'Victor Mono';
    color: #000300;
    padding: 0px;
}

.box {
    background-color: #F7F7F3;
    height: 500px;
    overflow-x: scroll;
    max-width: 450px;
    margin: auto;
    margin-top: 40px;
    padding: 1%;
    border: 1px dashed #000300;
    border-radius: 20px;
    overflow-x: auto;
}

/* FONT STUFF */

h1 {
    font-family: 'Alagard';
    font-size: 2em;
    font-weight: normal;
    padding: 0px;
    color: #611918;
    text-align: center;
}

h2 {
    font-family: 'Alagard';
    font-size: 1.5em;
    font-weight: normal;
    padding: 0px;
    color: #611918;
    text-align: center;
}

h3 {
  font-family: 'Alagard';
  font-size: 1.25em;
  font-weight: normal;
  padding: 0px;
  color: #611918;

}

p {
    padding: 1%;
}

a, a:visited, a:active {
    color: #B7836A;
    text-decoration: none;
    font-style: italic;
}

a:hover {
    color: #000300;
}

a.nav, a.nav:visited, a.nav:active {
    color: #fff;
    background-color: #B7836A;
    padding: 5px;
    margin: 1px;
    border-radius: 2px;
    font-weight: bold;
    text-decoration: none;
    display: inline block;
}

a.nav:hover {
    color: #B7836A;
    background-color: #fff;
    padding: 5px;
    text-decoration: none;
    display: inline block;
    transition: 0.5s;
}

/* LISTS */

ul {
    padding-left: 25px;
}

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

/* IMAGES */

.squirrel {
    position: absolute;
    top: 515px;
    left: 550PX;
}

.books {
    width: 100px;
    height: auto;
    padding: 1%;
}

/* 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;
}


