:root {
    --regen-border-size: 1px;
    --titil-border-size: 0.5px;
}

@keyframes slide-in-from-bottom {
    from { bottom: -90px }
    to { bottom: 0px }
}

.blog-entry-latest-container {
    display: flex;
    justify-content: center;
    position:absolute;
    width: 100%;
    bottom: 20px;
}

.latest-blog-entry h3 {
    font-family: 'TitilliumWeb';
    font-weight: 300;
    color: #fff;
    font-size: 1.1em;
    margin: 0;
    text-shadow:
        0px var(--titil-border-size) #777,
        var(--titil-border-size) var(--titil-border-size) #777,
        var(--titil-border-size) 0px #777,
        var(--titil-border-size) var(--titil-border-size) #777,
        var(--titil-border-size) var(--titil-border-size) #777,
        var(--titil-border-size) var(--titil-border-size) #777
    ;
}

.latest-blog-entry .regen {
    font-family: 'Regen';
    font-weight: 300;
    --border-color: #777;
    color: #fff;
    font-size: 1.1em;
    margin: 0;
    right: 0;
    position: absolute;
    text-shadow:
        0px var(--regen-border-size) var(--border-color),
        var(--regen-border-size) var(--regen-border-size) var(--border-color),
        var(--regen-border-size) 0px var(--border-color),
        var(--regen-border-size) calc(var(--regen-border-size)*-1) var(--border-color),
        calc(var(--regen-border-size)*-1) var(--regen-border-size) var(--border-color),
        calc(var(--regen-border-size)*-1) calc(var(--regen-border-size)*-1) var(--border-color)
    ;
}

.latest-blog-entry h4.regen {
    top: 0;
    transition: cubic-bezier(0.215, 0.610, 0.355, 1) 0.2s;
}
.latest-blog-entry h2.regen {
    left: 4px;
    top: 0;
    transition: cubic-bezier(0.215, 0.610, 0.355, 1) 0.2s;
}

.latest-blog-entry h3 {
    position: absolute;
    top: 20px;
    left: 20px;
}

.latest-blog-entry {
    background: url('../img/header-dym-middle.png') no-repeat;
    background-size: calc(100% - 28px) 42px;
    background-position: 50% 50%;
    width: 500px;
    height: 64px;
    /* bottom: 20px;
    left: calc(50% - 250px); */
    position: relative;
    animation-timing-function:cubic-bezier(0.23, 1, 0.320, 1);
    animation-name: slide-in-from-bottom;
    animation-duration: .5s;
}

.latest-blog-entry::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    height: 42px;
    width: 14px;
    background: url('../img/header-dym-left.png') no-repeat;
    background-size: 14px 42px;
}

.latest-blog-entry::after {
    content: "";
    position: absolute;
    right: 0;
    top: 11px;
    height: 42px;
    width: 14px;
    background: url('../img/header-dym-right.png') no-repeat;
    background-size: 14px 42px;
    z-index: -1;
}

@media (max-width: 600px) {
    .latest-blog-entry {
        /* left: calc(50% - 4   0%); */
        width: 80%;
        /* width: 80%;
        max-width: 500px; */
    }

    .latest-blog-entry h2.regen, .latest-blog-entry h4.regen {
        font-size: 14px;
        top: 4px;
    }

}