@font-face {
    font-family: "vcr osd mono";
    src: url("VCR_OSD_MONO.ttf") format("truetype");
}

body {
    background-color: rgb(30, 0, 20);
    color: white;
    font-family: "vcr osd mono";
}

a {
  color: red;
}

div.container {
    display: grid;
    grid-template-columns: "1fr";
    grid-template-areas:
        "header"
        "body";
    gap: 10px;
}

.container>div {
    padding: 20px;
}

div.header {
    grid-area: "header";
    background-color: black;
    text-align: center;
}

div.body {
    display: grid;
    grid-template-areas:
        "content image"
        "content none";
    grid-area: "body";
    grid-template-columns: auto fit-content;
    background-color: black;
    text-indent: 2%;
    gap: 10px;
}

div.header2 {
    grid-area: "header2";
}

div.content {
    grid-area: "content";
    text-indent: 25px;
    padding: 10px;
}

div.image {
    grid-area: "image";
    background-color: rgb(20, 20, 20);
    height: fit-content;
    width: fit-content;
    padding: 20px;
    text-align: center;
}
img {
  width: 90%;
}

em {
    color: grey;
}

div.null {
    background-color: black;
    text-align: center;
    padding: 0px;
}

p#hidden {
    color: black;
}