* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('rain.gif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #0c0c0c;
    color: #cccccc;
    font-family: "Courier New", Courier, monospace;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.terminal {
    max-width: 1024px;
    width: 100%;
    background-color: rgba(12, 12, 12, 0.95);
    padding: 40px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.path {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: lowercase;
}

/* New CSS for the image */
.console-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
}

.intro {
    margin-bottom: 30px;
}

.intro p {
    margin-bottom: 15px;
}

.options ul {
    list-style: none;
}

.options li {
    margin-bottom: 10px;
}

.options a {
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    display: inline-block;
}

.options a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.credits {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #555555;
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
}

@media (max-width: 480px) {
    .terminal {
        padding: 25px;
    }
}