/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

h1,
h2 {
    color: #d3d3d3;
    margin: 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

/* Header Styles */
header {
    width: 100%;
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

header h1 {
    position: absolute;
    left: 20px;
    margin: 0;
}

header h1 a {
    color: inherit;
    text-decoration: none;
}

header h1 a:hover {
    color: #939393;
}

/* Navigation Styles */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
}

/* Container Styles */
.container {
    background: #012933;
    color: #d3d3d3;
    font-family: 'Courier New', Courier, monospace;
    width: 800px;
    min-height: 400px;
    padding: 20px;
    margin: 100px auto 0 auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 2px solid #d3d3d3;
    position: relative;
}

.container::before {
    content: 'Terminal - BitBrew';
    display: block;
    width: 100%;
    height: 30px;
    background: #d3d3d3;
    color: #000;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    line-height: 30px;
    position: absolute;
    top: -32px;
    left: -2px;
    right: -2px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.container::after {
    content: '_ 🗖 x';
    display: block;
    position: absolute;
    top: -32px;
    right: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #000;
}

/* Command Line Styles */
.command-line {
    display: flex;
    align-items: center;
}

.command-line h2 {
    margin: 0;
    padding-right: 20px;
    font-size: 1em;
    background-color: #79a001;
    color: #000;
    padding: 2px 5px;
    border-radius: 0px;
    position: relative;
}

.command-line h2::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #79a001;
}

.command-line .command {
    margin-left: 30px;
    color: #79a001;
}