* {
    box-sizing: border-box;
}

html {
    cursor: url("pointer.png"), pointer;
  }
html,
body {
    /* cursor:url('/cursor.png'), auto; */
    padding: 0;
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
    font-size: 16px;
    line-height: 1.5;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 18.5714px;
    height: 100vh;
}



#output {
    color: rgb(32, 194, 14);
    position: relative;
    height: calc(100vh - 55px);
    padding: 10px;
    overflow-y: scroll;
    overflow-x: hidden;
    white-space: pre-wrap;
    overflow-x: auto;
}

#output.rotate {
    transform: rotateX(180deg) !important;
}

#output .container {
    display: flex;
}

@media (max-width: 925px) {
    #output .container {
        flex-flow: row wrap;
    }
}

#output .container .box-text {
    width: auto;
    padding-right: 10%;
    order: 2;
}

@media (max-width: 925px) {
    #output .container .box-text {
        width: 100%;
        order: 1;
    }
}

#output .container .box-image {
    width: auto;
    padding-right: 10%;
    order: 1;
}

@media (max-width: 925px) {
    #output .container .box-image {
        width: 100%;
        order: 2;
    }
}

#output .ascii {
    font-size: 1rem;
}

@media (max-width: 980px) {
    #output .ascii {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

@media (max-width: 675px) {
    #output .ascii {
        font-size: 0.5rem;
        line-height: 1;
    }
}

@media (max-width: 475px) {
    #output .ascii {
        font-size: 0.45rem;
        line-height: 1;
    }
}

#output .ascii-small {
    font-size: 0.5rem;
    line-height: 1.2;
}

@media (max-width: 475px) {
    #output .ascii-small {
        font-size: 0.3rem;
        line-height: 1;
    }
}

#output h1 {
    line-height: 1.5;
}

#output li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#output a {
    cursor: url('tap-final.png'), auto;
    text-decoration: underline;
    color: #fff;
    font-weight: bold;
}

#output a:hover {
    color: yellow;
}

#output hr {
    border: 0;
    border-top: 2px dashed #fff;
}

#output table {
    border-collapse: collapse;
    border: 2px dashed #fff;
}

#output table tr {
    border: 1px dashed #fff;
}

#output table tr th {
    color: yellow;
    font-weight: bold;
    text-align: left;
    padding: 15px;
    border: 2px dashed #fff;
}

#output table tr td {
    min-width: 120px;
    border: 2px dashed #fff;
    padding: 15px;
}

#output table tr td.id {
    min-width: auto;
}

#output .highlight {
    color: yellow;
}

#output .error {
    color: red;
}

#output .success {
    color: cyan;
}

#input {
    cursor: none;
    /* cursor: text; */
    height: 55px;
    width: 100vw;
    position: relative;
}

#input input {
    cursor: url('fianltext.png'), auto;
    background: #1a1a1a;
    color: #dd8c40;
    display: block;
    font-family: Consolas, monaco, monospace;
    font-size: 20px;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
    line-height: 100px;
    padding: 10px 30px;
    border: 0;
    height: 100%;
    width: 100%;
}

#input input:focus {    
    cursor: url('fianltext.png'), auto;
    outline: none;
}

#input::before {    
    cursor: url('fianltext.png'), auto;
    /* cursor: url('text.png'), auto; */
    position: absolute;
    display: block;
    content: ">>";
    color: #fff;
    left: 10px;
    top: 16px;
    z-index: 2;
}

.unique {
    color: orange;
}

.images {
    width: 100vh;
}

@media only screen and (max-width: 480px) {
    .images {
        width: 100%;
    }

    #input {
        position: sticky;
        bottom: 0;
    }

    .cursor {
        display: none;
    }


    /* #output {
        height: calc(100vh - 110px);
    } */
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb00;
    -webkit-border-radius: 10px;
    cursor: grab;
    /* border-radius: 10px; */
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #924b00;
}


.hover {
    background-color: rgb(187, 122, 0);
    opacity: 0.5;
}



/* Edited cursor end */
input[type="text"] {
    caret-color: rgb(32, 194, 14);
}