@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Roboto+Slab:wght@100..900&display=swap');

:root {
    --background: #000;
    --textcolor: #fff;

    --cmd1: #A2F4A2;
    --cmd2: #A8C3D4;
    --cmd3: #d28f84; 
}

body {
    /*background: url(background.png);
    background-repeat: auto;*/
    background: var(--background);

    margin: 0;

    font-family: 'Courier New', Courier, monospace;
    color: #000;

    display: flex ;
}

.container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px 0 15px 0;
}

.buffer {
    align-items: center;
    align-self: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.main {
    width: 80vw;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mh {
    display: flex;
    flex-direction: column;
    background: black;
    font-family: "Courier Prime", monospace;
    border: #fff 0.5px solid;
}

.mhct1 {
    color: var(--cmd1);
}

.mhct2 {
    color: var(--cmd2);
}

.mhct3 {
    color: var(--cmd3);
}

.mt {
    display: flex;
    flex-direction: row;
    width: 80vw;
    color: white;
    align-items: center;
    justify-content: center;
    border: #fff 0.5px solid;
}

.mt a {
    color: #FFF;
    margin: 0 5px 0 5px;
    text-align: center;
    align-self: center;
    justify-self: center;
}

.ms {
    width: 15vw;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    color: white;
    border: #fff 0.5px solid;
    height: 100%;
}

.ms a {
    margin: 3px 0px 3px 0px;
    text-align: center;
}

.md {
    width: 65vw;
    border: #fff 0.5px solid;
    align-self: flex-end;
    flex-direction: column;
    display: flex;
    height: 100%;
}

.mc {
    width: 80vw;
    display: flex;
    flex-direction: row;
}