html, body {
    background: rgb(38, 36, 39) !important;
    color: white;
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: yellow;
    background: black;
    padding-left: 20px;
    padding-right: 50px;
}

.nav-options-below-bar {
    width: 100%;
    height: 50px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.minionmemelogo {
    height: 120px;   
}

.nav-side {
    width: 25%;
    text-align: center;
    display: flex;
    gap: 7px;
    justify-content: end;
    align-items: center;
}

.nav-options-below-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 25vw;
    margin-left: 25vw;
    width: 50%;
    gap: 15px;
}

.nav-options-below-bar-outer {
    display: flex;
    height: 100%;
    background: yellow;
}

.nav-options-below-bar .btn {
    border-radius: 0;
    --bs-btn-bg: black;
}

.nav-options-below-bar .btn[data-current="true"] {
    font-weight: bold;
}

.post {
    max-width: 600px !important;
    width: 100%;
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 15px;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.post-img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: object-fit 0.2s;
}

.post-img-container.cropped .post-img {
    object-fit: contain;
}

.post-img-blurred-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    -webkit-filter: blur(15px);
    z-index: 0;
    display: none;
    border-radius: 5px;
}

.post-img-container.cropped .post-img-blurred-bg {
    display: block;
}

.post-img-blurred-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}

.post-pfp {
    height: 45px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.post-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.post-author {
    display: flex;
    gap: 5px;
    align-items: center;
    gap: 8px;
}

.post-author span {
    font-size: 19px;
}

.post-tags {
    font-size: 18px;
}

.post-tags-container {
    width: 100%;
}

.post-controls .btn {
    padding: 2px 8px;
}

.post-tags a:hover {
    text-decoration: underline !important;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}

.heart-changed {
    display: inline-block;
    animation: bounceSize 0.5s;
}

@keyframes bounceSize {
    0% {
        transform: scale(1.0);
    }
    65% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1.0);
    }
}

.homepage-feed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.post-img-skeleton-status {
    z-index: 0;
    pointer-events: none;
}

.post-img-skeleton-status-inner {
    background: #333;
    pointer-events: none;
}

.crop-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    opacity: 0.75;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.post-link-time {
    color: white;
    text-decoration: none;
}

.post-link-time:hover {
    text-decoration: underline;
}

.merch-widget {
    max-width: 600px !important;
    width: 100%;    
}