* {
    /* border: 1px solid red; */
}

html,
body {
    font-family: 'Courier New', Courier, monospace;
    scrollbar-width: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

a {
    text-decoration: inherit;
    color: black;
}

a:hover {
    background-color: red;
    color: white;
    padding: 2px;
}

.desc {
    font-size: 14px;
    margin: 25px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;

    a:hover {
        background-color: white;
        padding: 0px;
    }
}

.post-grid {
    max-width: 92vw;
    width: 714px;
    display: flex;
    margin: auto;
    flex-wrap: wrap;

    img {
        width: 115px;
        cursor: pointer;
    }

    a:hover {
        background-color: white;
        padding: 0px;
    }
}

@media screen and (width <=714px) {
    .post-grid {
        justify-content: center;
    }

    #meta {
        visibility: hidden;
    }
}

.filters,
.footer {
    max-width: 92vw;
    width: 712px;
    font-size: 12px;
    display: flex;
    margin: 8px auto;
    justify-content: space-between;

    .footer-content {
        margin: 5px 0px;
    }

    .tag {
        padding: 2px;
    }

    .tag:hover {
        background-color: red;
        color: white;
        cursor: pointer;
    }
}

.content {
    max-width: 92vw;
    width: 714px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    margin: auto;
    height: fit-content;
    min-height: 60vh;

    p {
        margin: 2px;
    }
}

.post {
    position: relative;
    font-size: 12px;
    color: white;
    height: 80.5px;
    margin: 1px;

    .post-image{
        height: 80.5px;
        width: 115px;
        filter: none;
    }
}

.post-title {
    visibility: hidden;
    position: absolute;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    left: 50%;
    top: 0;
    height: 92%;
    transform: translateX(-50%);

    .title-text {
        margin-top: 5px;
        margin-left: 5px;
        text-align: left;
        align-self: flex-start;
    }

    .date-text {
        margin-right: 5px;
        text-align: right;
        align-self: flex-end;
    }
}