body,
html {
    height: 100%;
    margin: 0;
    background-image: url('../images/image2.png');
    /* Adjust path as needed */
    background-size: cover;
    /* Cover the entire page */
    background-position: center;
    /* Center the background image */
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-window {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 0 10px #aaa;
}

header {
    display: flex;
    background-color: #333;
    padding: 5px;
}

.button {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    margin-right: 5px;
}

.red {
    background-color: #ff605c;
}

.yellow {
    background-color: #ffbd44;
}

.green {
    background-color: #00ca56;
}

.terminal {
    background-color: #1a1a1a;
    padding: 20px;
    overflow: auto;
}

pre {
    margin: 0;
    color: #39ff14;
    /* Classic terminal green */
}