* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: monospace;
    font-size: 14px;
    color: #c8cfd8;
    background: #343944;
    padding-top: 60px;
    line-height: 1.3em;
    text-align: center;
}
html {
    scroll-behavior: smooth;
}
ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
a {
    color: #5294e2;
}
b {
    color: #9ACD32;
}
.window {
    background: #404552;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius: 5px;
    border: 2px solid #333333;
    width: 580px;
    margin: auto;
}
.window_header {
    background: #333333;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.window_minimize_button, .window_maximize_button, .window_close_button {
    border-radius:               8px;
    width:                       12px;
    height:                      12px;
    display:                     inline-block;
    float:                       right;
    margin-left:                 6px;
    cursor: pointer;
}
.window_maximize_button {
    background:                  #2cc640;
    border:                      1px solid #51a75c;
}
.window_minimize_button {
    background:                  #fdbf2e;
    border:                      1px solid #d6a839;
}
.window_close_button {
    background:                  #fe6256;
    border:                      1px solid #ca5f59;
}
.window_title {
    position: absolute;
    left: 50%;
    transform: translateX(-65%);
}
.window_content {
    padding: 7px;
    text-align: left;
}
.blink {
    animation: blinking 1s infinite;
}
@keyframes blinking {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
@media screen and (max-width: 800px) {
    body {
        padding-top: 5px;
    }
    .window {
        width: 98%;
    }
}
.separator {
    display: block;
    color: #c8cfd8;
}
.separator::before {
    content: "-----------------------------------------";
}
.separator_large {
    display: block;
    color: #c8cfd8;
    white-space: pre;
}
.separator_large::before {
    content: "-----------------------------------------\A-----------------------------------------";
}
.command-line::before {
    content: "horoshoznaet@lasthost ~ $ ";
    font-weight: bold;
    color: #9ACD32;
}
.command-line {
    display: inline;
}
.command-line::after {
    content: "cv";
    color: #c8cfd8;
}
.cmd {
    color: #FFD700;
    display: inline-block;
}
.highlight { 
    color: #00BFFF;
    display: inline-block;
}