/* General */
* {
    padding: 0;
    margin: 0;
    font-family: monospace;
    font-size: 20px;
    box-sizing: content-box;
}

body {
    background-color: black;
    padding: 20px;
}

::selection {
    background-color: rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
}

.icon {
    margin-right: 20px;
}

/* Output */
.output {
}

.output li {
    list-style: none;
    display: flex;
    margin-bottom: 10px;
}

/* Input */
.input {
    display: flex;
}

.input .icon {
    color: blue;
}

.input textarea {
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    resize: none;
}
