html body {
    background: #000;
    color: #FFF;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1em;
    margin: 0;
    padding: 0;
}

#app {
    /* margin: 0; */
    /* padding: 10%; */
    /* border: #FFF 1px solid; */

}

.post-list-item {
    border: #FFF 1px solid;
    padding: 2vw;
}
#content {
    padding: 15px 15px;
}

.post-xbox {
    position: relative;
    background-color: #ffffff;
    /* border: 1px solid #5a5a5a; */
    margin: 1px;
    width: 15px;
    height: 15px;
    right: 0px;
    top: 0px;
}

.post-xbox:after {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "\d7"; /* use the hex value here... */
    font-size: 15px; 
    color: #000000;
    /* line-height: 100px; */
    text-align: center;
}

.xbox {
    position: absolute;
    background-color: #ffffff;
    /* border: 1px solid #5a5a5a; */
    margin: 1px;
    width: 15px;
    height: 15px;
    right: 0px;
    top: 0px;
}

.xbox:hover {
    position: absolute;
    background-color: #000000;
    /* border: 1px solid #5a5a5a; */
    margin: 1px;
    width: 15px;
    height: 15px;
    right: 0px;
    top: 0px;
    color: #ffffff;
}

.xbox:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "\d7"; /* use the hex value here... */
    font-size: 15px; 
    color: #000000;
    /* line-height: 100px; */
    text-align: center;
}

.xbox:hover:after {
    color: #ffffff;
}

h1 h2 h3 h4 h5 h6 {
    font-family: "vhs";
}

.no-top {
    margin-top: 0px;
    padding-top: 0px;
}

a {
    color: white;
    animation: rainbow-text 10s linear 0s infinite running;
    text-decoration: none;

}

a:visited {
    color: rgb(202, 0, 202);
    animation: rainbow-text 10s linear 0s infinite running;
    text-decoration: none;
}

@font-face {
    font-family: vhs;
    src: url("./font/VCR_OSD_MONO_1.001.ttf");
}

@keyframes rainbow-text {
    0% {
        color: hsl(0, 100%, 50%)
    }

    50% {
        color: hsl(180, 100%, 50%)
    }

    100% {
        color: hsl(359, 100%, 50%)
    }
}

footer {
    position: fixed;
    bottom: 0%;
    right: 0%;
    animation: rainbow-text 10s linear 0s infinite running;
    font-size: 1em;
}

.meta-detail {
    font-size: 0.75em;
    padding-left: 1vw;
}

pre {
    background-color: #1b1b1b;
    padding: 1vh 1vw;
    width: fit-content;
}

code.language-text {
    border-radius: 3px;
    font-family: courier, monospace;
    padding: 0;
    white-space: pre-wrap;
  }

blockquote {
    background-color: #333;
    border-left: 5px solid #000;
    color: #FFF;
    font-style: italic;
    margin: 1em 0;
    padding: 0.5em 1em;
}