body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('image1.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column; /* To stack the greeting and console vertically */
}

.content-container {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.greeting {
    font-size: 4em;
    font-weight: bold;
    margin: 0;
}

.console {
    background-color: #1e1e1e; /* Dark background color */
    color: #00ff00; /* Green text color */
    font-family: 'Courier New', Courier, monospace; /* Monospaced font */
    font-size: 1em;
    padding: 8px; /* Padding for a bit of space */
    width: 80%; /* Width of the console window */
    max-width: 600px;
    border-radius: 5px;
    margin-top: 20px; /* Space between the greeting and the console */
}

.console p {
    margin: 0;
    white-space: nowrap; /* Prevents text from wrapping to the next line */
    overflow: hidden; /* Hides any text that overflows */
    text-overflow: ellipsis; /* Adds an ellipsis (...) for truncated text */
}