body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #121212;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    font-size: 16px;
    text-rendering: optimizeLegibility;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(
        135deg,
        #121212 25%,
        #1a1a1a 25%,
        #1a1a1a 50%,
        #121212 50%,
        #121212 75%,
        #1a1a1a 75%,
        #1a1a1a
    );
    background-size: 40px 40px;
    animation: move 4s linear infinite;
}

@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

.container-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    background: #212121;
    padding: 20px;
    box-sizing: border-box;
}

.terminal_toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
    background: #212121;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 0 10px;
    box-sizing: border-box;
}

.butt {
    display: flex;
    align-items: center;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-right: 5px;
    font-size: 8px;
    height: 12px;
    width: 12px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(#7d7871 0%, #595953 100%);
    box-shadow: 0 0 1px #41403A, 0 1px 1px #474642;
}

.btn-color {
    background: #ee411a;
}

.btn:hover {
    cursor: pointer;
}

.btn:focus {
    outline: none;
}

.add_tab {
    border: 1px solid #fff;
    color: #fff;
    padding: 0 6px;
    border-radius: 4px 4px 0 0;
    border-bottom: none;
    cursor: pointer;
}

.user {
    color: #d5d0ce;
    font-size: 14px;
    margin-left: 10px;
}

.terminal_body {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    padding: 10px;
    font-size: 12px;
    border-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 10px;
}

.terminal_promt {
    display: flex;
    flex-direction: column;
}



.terminal_user, .terminal_location, .terminal_bling {
    font-size: 12px;
}

.terminal_user {
    color: #1eff8e;
}

.terminal_location {
    color: #4878c0;
}

.terminal_bling {
    color: #dddddd;
}

.message {
    color: #d5d0ce;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.5;
}

.m-action-1 {
    color: #1eff8e;
    font-size: 13px;
}

.m-action-2 {
    color: #4878c0;
    font-size: 13px;
}

.terminal_cursor {
    display: block;
    height: 14px;
    width: 5px;
    animation: curbl 1200ms linear infinite;
}

@keyframes curbl {
    0%, 49%, 100% {
        background: #ffffff;
    }
    50%, 99% {
        background: transparent;
    }
}

.footer {
    margin-top: 20px;
    color: #d5d0ce;
    font-size: 12px;
}

.footer a {
    color: #1eff8e;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .btn {
        height: 14px;
        width: 14px;
    }

    .add_tab {
        font-size: 13px;
        padding: 2px 6px;
    }

    .user {
        font-size: 16px;
        margin-left: 5px;
    }

    .terminal_body {
        padding: 10px;
        font-size: 14px;
    }

    .terminal_cursor {
        height: 18px;
        width: 8px;
    }

    .message {
        font-size: 17px;
        margin-top: 15px;
    }

    .m-action-1, .m-action-2 {
        font-size: 15px;
    }
}
