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

body {
    background-image: url("/images/persona.jpeg");
    background-color: rgb(30, 0, 20);
    height: max-content;
    color: rgb(235, 235, 255);
    font-family: "vcr osd mono";
}

a {
    color: rgb(120, 120, 255);
}

div.container {
    display: flex;
    flex-direction: column;
    margin: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.container>div {
    padding: 20px;
    margin: 10px;
}

div.header {
    grid-area: "header";
    width: 75%;
    background-color: rgb(210, 210, 255);
    text-align: center;
}

div.content {
    grid-area: "content";
    width: 100%;
    height: 800px;
    padding: 10px;
}

div.content>p {
    color: rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    width: fit-content;
}

img {
    width: 90%;
    object-fit: contain;
}

em {
    text-decoration: none;
    color: rgba(120, 120, 255, 0.6);
}

div.null {
    background-color: rgba(210, 210, 255, 0.15);
    text-align: center;
    padding: 10px;
}

p#hidden {
    color: black;
}