a {
    color: gray;
}

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

time {
    color: gray;
}

.menu-bar {
    /* config */
    height: 26px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* style */
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    background: black;
    padding-top: 0;
    z-index: 10;
}


/* MENU ITEM */

.site-header {
    padding: auto 30px;
}

.site-content {
    margin-top: calc(26px + 2%);
}

.nav-link {
    padding: 0 4px;
}

.menu-item {
    margin: auto 7px auto 7px;
    vertical-align: top;
    font-family: rubik;
    font-size: 0.9rem;
    color: white;
}

.menu-item:hover {
    background-color: white;
    color: black;
}

.menu-site-name {
    margin: 0 0 0 24px;
}

.menu-item:focus {
    outline: none;
    box-shadow: none;
    background-color: white;
    color: black;
}


/* DROPDOWN */

.dropdown-toggle::after {
    content: none;
}

.dropdown-menu {
    margin-top: 2px;
    border-radius: 0;
    border: solid 2px black;
    box-shadow: 3px 3px black;
    position: absolute;
    z-index: 10;
    background: white;
}

.dropdown-divider {
    border-width: thin;
    border-style: dashed;
    margin: 4px auto;
}

.dropdown-item {
    font-family: rubik;
    font-size: 0.8rem;
    color: black;
    display: block;
    line-height: 1rem;
}

.dropdown-item:hover {
    background: black;
    color: white;
}


/* INDEX */

.post-lightbox {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: white;
    opacity: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    transform: scale(1);
    border-radius: 0;
}

.post-lightbox:hover {
    opacity: 0.3;
}

.pswp__img {
    padding: 0 2%;
    margin: auto;
}

.pswp__button.pswp__button--zoom {
    display: none;
}

.pswp__counter {
    display: none;
}

.ins-icon {
    display: inline;
    position: fixed;
    width: 65px;
    right: 0;
    align-self: right;
}

#ins-icn {
    float: right;
    width: 20px;
    height: 15px;
    padding: auto 2.5px;
    margin: auto 0;
}

#ins-icn:hover {
    filter: opacity(50%);
    background: none;
}

.post-header.container {
    margin-top: 30px;
}

.post-title {
    background: black;
    padding: 7px calc(24px + 3%);
    font-size: 1rem;
    color: white;
    border-radius: 4px;
    text-align: center;
    display: inline-block;
    box-shadow: 2.7px 2.5px gray;
}


/* MOBILE */

@media (max-width: 900px) {
    .site-content {
        margin-top: calc(26px + 4%);
    }
}