@font-face {
  font-family: baligle;
  src: url(https://dl.dropbox.com/s/xqmnf9qj9tmgqgz/Baligle%20Regular.otf);
}
h1 {
    margin: .2em .1em;
    color: white;
    filter: drop-shadow(0px 1px black) drop-shadow(0 -1px black) drop-shadow(1px 0 black) drop-shadow(-1px 0 black) drop-shadow(0px 1px #CF431E) drop-shadow(0 -1px #CF431E) drop-shadow(1px 0 #CF431E) drop-shadow(-1px 0 #CF431E);
    font-family: baligle;
}
h2, h3 {
    margin: .2em .1em;
    color: white;
    filter: drop-shadow(0px 1px black) drop-shadow(0 -1px black) drop-shadow(1px 0 black) drop-shadow(-1px 0 black) drop-shadow(0px 1px #CF431E) drop-shadow(0 -1px #CF431E) drop-shadow(1px 0 #CF431E) drop-shadow(-1px 0 #CF431E);
    font-family: baligle;
}
h4 {
    font-size: 1.2em;
    margin: 0;
    color: #CF431E;
    text-decoration: underline 1px dashed;
    transition: .5s;
    font-family: baligle;
}
h4:hover {
    color: white;
    text-shadow: -1px 0 #CF431E, 0 1px #CF431E, 1px 0 #CF431E, 0 -1px #CF431E, 0 0;
}
mark {
    color: white;
    filter: drop-shadow(0px 1px #7e3434) drop-shadow(0 -1px #7e3434) drop-shadow(1px 0 #7e3434) drop-shadow(-1px 0 #7e3434);
    background: none;
}
b {
    color: #7e3434;
}
a {
    color: #E5F39B;
    text-decoration: underline 2px dotted;
    transition: .5s;
}
a:hover, a:focus {
    color: white;
    font-style: italic;
}
button {
    background: #dc9481;
    border: 1px dashed #7e3434;
    margin: .1em;
    transition: .5s;
}
button:hover, button:focus {
    background: #E5F39B;
    font-weight: bold;
}
.quote {
    border-left: 3px #E5F39B solid;
    border-radius: 10px;
    padding: .3em 0 .3em .5em;
}
body {
    background-image: url(/img/blog/bg-1.jpg);
    background-size: 230vh;
    font-family: arial;
}
#main {
    margin: 0 auto;
    width: 60%;
    height: 100%;
    border-width: 7px; 
    border-style: solid; 
    border-image: url(/img/blog/border.gif) 7 fill round;        
}
header {
    display: flex;
    align-items: flex-end;
    grid-row: 1;
    height: 25vh;
    background-image: url(/img/blog/header-bg.jpg);
    background-position: 10% 20%;
    background-size: 100%;
    border-bottom: 1px dashed white;
}
    #title {
        font-size: 4em;
        color: white;
        filter: drop-shadow(0px 1px black) drop-shadow(0 -1px black) drop-shadow(1px 0 black) drop-shadow(-1px 0 black) drop-shadow(0px 1px #CF431E) drop-shadow(0 -1px #CF431E) drop-shadow(1px 0 #CF431E) drop-shadow(-1px 0 #CF431E);
        position: relative;
        bottom: -.2em;
        font-family: baligle;
    }
nav {
    background: brown;
    height: 100%;
    padding: .1em .5em;
    border-bottom: 1px dashed white;
    overflow-x: hidden;
}
    #sub {
        color: white;
        display: block;
        animation: marquee 15s linear infinite;
        float: right;
        white-space: nowrap;
    }
    @keyframes marquee {
      0% {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    }
    100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);}
    }
    #sub:hover {
    animation-play-state: paused;
    }
footer {
    height: 3vh;
    background: brown;
    color: white;
    text-align: center;
}
footer > span {
    position: relative;
    bottom: -.1em;
}
main {
    width: 100%;
    height: 100%;
    padding: .3em .1em;
}
#corner {
    width: 20%;
    position: fixed;
    bottom: 0;
    right: 0;
}
@media (max-width: 800px) {
    body {background-size: 250vw;}
    #title {font-size: 3em; bottom: -.2em; flex-wrap: wrap;}
    #corner {width: 25%;transition:.5s;}
    #corner:hover,#corner:focus {display:none;}
    main > div { font-size: .9em; }
}