body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-size: 16px;
}

.terminal {
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.terminal-body {
    flex: 1;
    overflow-y: auto;
}

.input-line {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.prompt {
    color: rgb(5, 206, 145);
    font-weight: bold;
}

.prompt-path {
    color: rgb(59, 184, 223);
    font-weight: bold;
}

.prompt-suffix {
    margin-right: 5px;
    font-weight: bold;
}

input[type="text"] {
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    width: 100%;
    font-size: 16px;
}

ul.horizontal-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

ul.horizontal-list li {
    margin-right: 10px;
}

.govbanner {
    width: 100%;
    background: #f1f1f1;
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #ccc;
    display: none;
}

.govbanner img {
    height: 16px;
    margin-right: 8px;
}

.govbanner p {
    margin: 0 8px 0 0;
    font-size: 0.8rem;
    font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
}

.govbanner a {
    font-size: 0.8rem;
    color: #0645AD;
    text-decoration: underline;
    font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
}

.saddam-image {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 80px;
    height: auto;
    z-index: 1000;
    opacity: 0.85;
}