*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana;
}

body,
textarea {
    background-color: white;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    gap: 2px;
    margin: 1px;
    height: 99vh;
}

#buttons {
    width: 99vw;
    display: flex;
    flex-direction: row;
    gap: 2px;
}
#help {
    height: 7vh;
    width: 20vw;
}
#run {
    height: 7vh;
    width: 79vw;
}
textarea { 
    height: calc(85vh/3);
    width: 100%;
    border: none;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    outline: none;
    resize: none;
}

.wrap {
    border-color: #ff9900;
    width: 99vw;
    position: relative;
    border: 2px solid #ff9900;
    border-left: 40px solid #ff9900;
    padding: 1px;
    color: rgba(black, 0.5);
    font-size: small;
    display: inline-block;
    flex-grow: 1;
}
.label {
    letter-spacing: 0.2rem;
    font-weight: bold;
    color: white;
    background-color: #ff9900;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: -30px;
    display: block;
    transform: rotate(270deg);
    transform-origin: 0 0;
    width: 3vw;
    break-after: avoid;
}
