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

:root {
    --light-gray: #f2f2f2;
    --gray: #dfdfdf;
    --blue: #002496;
}

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;
    margin: 0;
}

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

a:hover {
    background-color: var(--blue);
    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;
    }

    #header-image {
        width: 100px;
        margin-top: 25px;
    }
}

.post-image {
    display: flex;
    justify-content: center;

    img {
        /* 5x7 aspect */
        width: 712px;
        height: auto;
        max-width: 92vw;
        visibility: hidden;
        border: 2px solid black;
    }
}

@media screen and (width <=714px) {
    #meta {
        visibility: hidden;
    }
}

.post-desc-box,
.post-caption,
.footer {
    max-width: 92vw;
    width: 712px;
    font-size: 12px;
    display: flex;
    margin: 25px auto;
    justify-content: space-between;

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


.post-caption {
    margin: 8px auto;

    .tag {
        padding: 2px;
        display: flex;
        align-items: center;
    }

    #left-arrow {
        -webkit-transform: scaleX(-1);
        -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        transform: scaleX(-1);
    }
}


.in-text-link {
    text-decoration: inherit;
    text-decoration: underline 2px var(--blue);
    color: black;
    cursor: pointer;
}

.in-text-link:hover {
    color: white;
    padding: 0px;
}

.post-desc-box {
    .post-desc {
        display: block;
        width: 500px;
        margin: 0px;
        margin-right: 15px;

        .authors-note {
            color: gray;
            margin-top: 12px;

            a {
                color: gray;
                text-decoration: underline 2px var(--blue);
            }

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

    #logo {
        width: 150px;
    }

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

    .post-nav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .post-nav-elem {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: black;
            color: white;
            height: 24px;
            width: 60px;
            margin: 4px;
        }

        a {
            color: white;
        }

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

hr {
    border: 1px solid var(--light-gray);
    width: 100%;
}

.content {
    max-width: 92vw;
    width: 714px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    margin: 0px auto;

    p {
        margin: 4px 0px;
    }
}

.full-page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
}