/* © 2025 Romar Jabez */

.console-wrapper {
    user-select: text;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    color: white;
    background-color: #373b37;
    padding: 10px 13px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 130px;
    width: 100%;
}

.console-container {
    display: flex;
    justify-content: center;
}

@media (max-width: 1060px) {
    .console-wrapper {
        height: 20vh;
    }
}

@media (max-width: 860px) {
    .console-wrapper {
        font-size: 14px;
    }
}

@media (max-width: 680px) {
    .console-wrapper {
        width: 60vw;
    }
}