@font-face {
    font-family: "LibreBaskerville";
    src: url("./fonts/LibreBaskerville-Regular.otf"); 
    font-style: normal;
}

body {
    background-color: black;
    background-image: url("./images/forest.png");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat-y;
    color: ghostwhite;
    font-family: "LibreBaskerville", Verdana;
    margin: 0;
    padding: 0;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: yellowgreen;
}

.highlight {
    color: yellowgreen;
}

.content {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 40px 20px;
    overflow-y: auto;
    max-width: 600px;
    margin: 40px auto;
}

.menu {
    position: fixed;
    background-color: #000000;
    border: 4px double dimgray;
    left: 20px;
    top: 20px;
    width: 100px;
    text-align: center;
    padding: 8px;
}

.menu a {
    display: block;
    padding: 8px;
}

.logo {
    background-image: url("./images/logo.png");
    background-size: contain;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
}

.post {
    background-color: #000000;
    border: 4px double dimgray;
    margin: 16px auto;
    position: relative;
    width: fit-content;
}

.post p {
    margin: 16px;
}

.post img {
    z-index: 10;
    display: block;
    position: relative;
    margin: 0px;
}

.post::before {
    background-image: url("./images/noise.png");
    background-repeat: repeat;
    position: absolute;
    content: '';
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

@media (max-width: 1000px) {
    .content {
        padding: unset;
    }
    .menu {
        width: fit-content;
        position: relative;
        left: auto;
        margin: auto;
        font-size: 14px;
    }
    .menu a {
        display: inline-block;
        line-height: 32px;
    }
    .logo {
        display: inline-block;
        vertical-align: top;
        width: 50px;
        height: 50px;
    }
}