:root {
    --text-green: #b5deb5;
    --text-dark-green: #6eaf6e;
    --text-red-brick: #AA4A44;
    --text: #DDDDDD;
    --background: #111111;
    --header-height: 200px;
    --white: #ffffff;
    --console-height: 500px;
}

html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
    background-color: var(--background);
}

/* TEXT*/
h1{
    color: var(--text-green);
    font-family: "Roboto Mono";
    font-weight: 400;
}
/* HEADER */
.header{
    grid-area: header;
    position: fixed;
    top: 0;
    left:0;
    width:100%;
    height: var(--header-height);
    background: var(--background);
    z-index:1000;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to top, var(--white), transparent);
}

.header img {
    height: calc(var(--header-height) * 0.8);
    max-width: 600px;
    object-fit: contain;
}

.header .site-name {
    margin: 0 auto;
}
/* MAIN */
.main-content{
    width:100%;
    max-width: 800px;
    min-width: 320px;
    padding: 2em;
    margin: 0 auto;
    background-color: var(--background);
    min-height: calc(100vh - var(--header-height));
    box-sizing: border-box;
}
/* BODY */
body {
    color: var(--text);
    background-color: var(--background);
    padding-top: var(--header-height);
    font-family: "Roboto Mono", monospace;
    margin: 0;
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
}
/* CONSOLE */
.console {
    background-color: #000;
    width: 100%;
    height: var(--console-height);
    padding: 10px;
    box-sizing: border-box;
    border: 2px solid #0f0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2), inset 0 0 10px rgba(0, 255, 0, 0.1);
}

.console-output {
    flex: 1;
    overflow-y: auto;
    white-space: pre-wrap;
    color: #6a8f63;
}

.console-input{
    background: none;
    border: none;
    outline: none;
    color: #0f0;
    font-family: "Roboto Mono", monospace;
    font-size: 16px;
}
/* LINKS */

a.hidden_link {
    color: var(--text-dark-green);
    text-decoration: none;
}

