* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: #000;
    color: #00ff00;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.terminal {
    border: 2px solid #00ff00;
    width: 80%;
    max-width: 1000px;
    padding: 20px;
    background-color: #111;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.output {
    border: 1px solid #00ff00;
    padding: 15px;
    min-height: 300px;
    flex-grow: 1;
    overflow-y: auto;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

h1 {
    color: #00ff00;
    margin-bottom: 10px;
}
.logo {
    text-align: center;
}

p {
    color: #00ff00;
}

/* Terminal input box styles */
.terminal-input {
    display: flex;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #00ff00;
}

.terminal-input label {
    color: #00ff00;
    margin-right: 10px;
}

.terminal-input input {
    background-color: #000;
    color: #00ff00;
    border: none;
    outline: none;
    width: 100%;
    padding: 5px;
    font-family: 'Courier New', Courier, monospace;
}
