body {
    font-family: 'Noto Sans', arial, sans-serif;
    line-height: 1.5;
    padding: 1em 1em;
}

#menu-bar {
    display: flex;
    justify-content: space-between;
}

#menu-bar a {
    padding: 3px;
    text-decoration: none;
}

#menu-bar a:hover {
    background-color: #dddddd;
}

#menu-bar .menu a:first-child {
    margin-right: 5px;
}

.blog-post-date {
    color: #444444;
    font-size: 0.9em;
    font-weight: bold;
}

/*----------------------------------------------------------------------------*/
/* Responsive Stuff                                                           */
/*----------------------------------------------------------------------------*/
@media (max-width: 600px) {
    body {
        padding: 0.5em 0.5em;
    }
    #menu-bar {
        font-size: 0.9em;
    }
}

.iframe-wrapper {
    position: relative;
    height: 0;
    padding-top: 56.2%;
    overflow: hidden;
}

.iframe-wrapper iframe {
    border: 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}