
.bgimage {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

img {
    height: auto;
}

.post-container {
    padding: 50px 0;
}
.post-container h1, .post-container h2, .post-container h3 {
    color: var(--primary-color);
}

.tint-image {
    height: 15px;
    width: 15px;
    transition: .5s;
}
.tint-image.open {
    transform: rotate(180deg);
}

@media screen and (max-width: 768px) {

    .post-container {
        padding: 30px;
    }

}

.fullscreen-image {
    position: fixed;
    z-index: 100;
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fullscreen-image img {
    width: 50%;
    height: auto;
}