:root {
    --bg: #000000;
    --font-color: #f1f1f1;
    --greeny: #abf837;
    --bluey: #00f0f0;
    --bluey-shadow: #314e49;
    --blu: #009696;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Web437 Compaq Port3';
    font-weight: 400;
    font-size: 16px;
    background-color: var(--bg);
    color: var(--font-color);
    margin: 0;
    padding: 0;
    height: 100vh;
}

img {
    object-fit: cover;
    border-radius: 10px;
}

p {
    margin: 12px 0 0 0;
}

a {
    color: var(--bluey);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer img {
    border-radius: 0;
}

h1 {
    font-weight: 400;
    text-shadow: 2px 2px 0 var(--bluey-shadow);
    margin: 0;
}

h2, h3, h4, h5, h6 {
    font-size: 1.3rem;
    text-shadow: 2px 2px 0 var(--bluey-shadow);
    font-weight: 400;
}

.header {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.presentation {
    padding: 32px;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    max-width: 480px;
}

.buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items:center;
    padding: 20px 10px;
    max-width: 480px;
    margin: 0 auto;
    gap: 12px
}

.buttons::after {
    content: "";
    width: 120px;
}

.buttons a {
    text-align: center;
    padding: 1ch;
    color: #fff;
    min-width: 15ch;
    background-color: var(--blu );
    box-shadow: 2px 2px 0 var(--bluey-shadow);  
}

.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main {
    text-align: center;
    margin-top: 32px;
    max-width: 480px;
}

.mt {
    margin-top: 4rem;
}

#footer {
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: auto;
    max-width: 75ch;
    font-size: 0.7rem;
}

img.me {
    height: 0.6rem;
}

#back {
    text-align: left;
    width: 100%;
}

#back::before {
    content: "< ";
}

#journal {
    text-align: left;
    align-items: left;
    padding: 32px;
}

#journal h1 {
    text-shadow: none;
    font-size: 1rem;
    margin-top: 4ch;
    margin-bottom: -1.5ch;
}

#journal h1::after {
    content: "\A==========";
    white-space: pre-wrap;
}