body {
    background-color: black;
    color: limegreen;
    font-family: monospace;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.terminal {
    width: 80%;
    padding: 20px;
    background-color: black;
    border: 2px solid limegreen;
    box-shadow: 0 0 10px limegreen;
    position: relative;
}

.command-line {
    overflow-x: hidden;
    animation: terminalText 1s infinite alternate;
}

.prompt {
    color: limegreen;
}

.output {
    color: limegreen;
    margin-left: 10px;
}

.cursor {
    display: inline-block;
    background-color: limegreen;
    width: 8px;
    height: 20px;
    animation: cursorBlink 0.5s infinite;
}

@keyframes terminalText {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

@keyframes cursorBlink {
    from, to {
        background-color: limegreen;
    }
    50% {
        background-color: transparent;
    }
}

@keyframes cursorMove {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(5px);
    }
}

@media (max-width: 768px) {
    .terminal {
        width: 80%;
    }
    body {
        margin-top: 15%;
        margin-bottom: 15%;
    }
}