.prose h1{
    margin-top: 1em;
    font-size: 30px;
}
.prose h2{
    margin-top: 0.9em;
    font-size: 26px;
}

.prose h3{
    margin-top: 0.75em;
    font-size: 22px;
}

.prose h4 h5 h6{
    margin-top: 0em;
}

#row-full{ /* from https://coderwall.com/p/hkgamw/creating-full-width-100-container-inside-fixed-width-container */
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    height: 400px;
    left: 50%;
    background-color:#EFEDDA;
}


@media (max-width: 1220px) {  /* disppear on screens smaller than col-ld https://stackoverflow.com/questions/11796297/div-show-hide-media-query */
    #row-full{
        display: none;
    }
}

#row-full img{
    height: 400px;
    width: 400px;
    margin: 0 0 0 0;
}

hr {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}


#footer-container{
    background: #262626;
    border-top: 1px solid #7B7D7D;
    color: white;
    padding: 1rem 1rem 1rem 2rem;

    width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
}

#footer-content{
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    width: 100%;
}

#footer-content a {
    color: white;
}

p > a {
    color: #2563eb; 
    text-decoration: underline;
}

p > a:link {
    color: #2563eb; 
    text-decoration: underline;
}

p > a:visited {
    color: #2563eb;
    text-decoration: underline;
}

p > a:hover {
    color: black;
    text-decoration: none;
}

p > a:active{
    color: #7734DB;
    text-decoration: underline;
}



#post-nav {
    border-bottom: 1px solid #ABB2B9;
    border-width: 150%;
}


img.portrait {
    border-radius: 100%;
    max-width: 220px;
    float: right;
}

*:focus {
    outline: none;
}


/* For blinking text*/
@keyframes blink {
    50% {
      opacity: 0.0;
    }
}
@-webkit-keyframes blink {
    50% {
      opacity: 0.0;
    }
}
.blink {
    animation: blink 1s step-start 0s infinite;
    -webkit-animation: blink 1s step-start 0s infinite;
}

cite{
    text-align: right;
    display: block;
}
