#output {
    top: 50%;
}

textarea {
    background-color: rgb(20, 20, 20);
    color: white;
    font-size: 1.1rem;
    resize: none;
    z-index: -1;
    border: none;
    outline: none;
}

.extra {
    position: absolute;
    bottom: 0px;
    left: calc(100%/3);
    width: calc(100%/3);
    height: 30px;
    display: none;
}

#extra2 {
    left: calc(100%/3 *2);
}

.main {
    width: 100%;
    height: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

select {
    z-index: 1;
    position: absolute;
    bottom: 0px;
    background-color: rgb(20, 20, 20);
    outline: none;
    border: none;
    color: white;
    width: calc(100% / 3);
    height: 30px;
}

::-webkit-scrollbar {
    width: 12.5px;
    cursor: pointer
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    cursor: pointer
}

::-webkit-scrollbar-thumb {
    background: #3c283c;
    border-radius: 10px;
    cursor: pointer
}

::-webkit-scrollbar-thumb:hover {
    background: #321e32
}

.theme {
    width: 20px;
    height: 100%;
    position: absolute;
    right: 0px;
    z-index: 2;
    max-width: 200px;
    transition: all 0.8s ease;
    background: rgb(20,20,20)
}
#themebar {
    transition: all 0.8s ease, background 0ms;
    background: 0 0!important;
}
.themeselect {
    width: 20px;
    height: 100px;
    border-left: 1px solid white;
}
.selected {
    filter: brightness(200%)
}

#default {
    background: rgb(20, 20, 20);
}

#monokai {
    top: 100px;
    background: rgb(30, 20, 30);
}

#hackertyper {
    background: rgb(3, 3, 3);
    top: 200px;
    border-bottom: 1px solid white;
}
#hackertyper.selected {
    filter: brightness(300%);
}
* {
    padding: 0;
    margin: 0;
    font-family: monospace;
}
