@font-face {
    font-family: 'vera_roman';
    src: url('font/VeraMono-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'vera_bold';
    src: url('font/VeraMono-Bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {

    font-family: 'vera_bold_italic';
    src: url('font/VeraMono-Bold-Italic-webfont.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}

@font-face {

    font-family: 'vera_italic';
    src: url('font/VeraMono-Italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;

}



body {
    font-family: "vera_roman", helvetica, arial;
    background: url("pics/bg3.png") #eee;
    color: #333;
}

p {
    font-size: 12px;
    font-kerning: auto;
    letter-spacing: 0.5px;
    line-height: 17px;
}

p.bold {
    font-size: 12px;
    font-family: "vera_bold";
}

ol {
    font-size: 12px;
    font-kerning: auto;
    letter-spacing: 0.6px;
    line-height: 17px;
}

h1 {
    font-size: 12px;
    margin-top: 40px;
    letter-spacing: 3px;
    border-top: 1px dashed;
    border-bottom: 1px dashed;
    padding: 5px 0;
}

h2 {
    font-size: 12px;
    margin-top: 20px;
    position: relative;
    animation-name: wiggle-anim;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
}

@media screen and (max-width: 600px) {

    p {
        font-size: 14px;
        font-kerning: auto;
        letter-spacing: 0.6px;
        line-height: 18px;
    }
    
    h1 {
        font-size: 14px;
    }
    
    h2 {
        font-size: 14px;
    }
}

blockquote {
    font-size: 12px;
    font-kerning: auto;
    letter-spacing: 0.6px;
    line-height: 17px;
    font-style: italic;
    border-left: 1px solid;
    margin-left: 0px;
    padding-left: 10px;
}

a {
    color: #A53C37;
}

img {
    width: 600px;
    max-width: 100%
}

@media screen and (min-width: 1281px) {
    img {
        width: 800px;
    }
}

@media screen and (max-width: 600px) {
    img {
        width: 320px;
    }
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

.content {
    margin: 0 auto;
    width: 500px;
}

@media screen and (min-width: 1281px) {

    .content {
        margin: 0 auto;
        width: 800px;
    }

}

@media screen and (max-width: 600px) {
    .content {
        margin: 0 auto;
        width: 320px;
    }
}

.banner {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-top: -100px;
}

.banner img {
    width: 100%;
    max-height: initial;
}



@keyframes wiggle-anim {
    0% {
        left: 0px;
    }

    25% {
        left: -1px;
    }

    50% {
        left: 2px;
    }

    75% {
        left: 1px;
    }

    100% {
        left: 0px;
    }
}

.archive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  grid-gap: 20px;
  /*grid-auto-flow: dense;*/
}
