@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap);

body{
    font-family: 'Ubuntu Mono';
    margin: 0;
    font-size: 15;
    background-color: #101724;
    color: white
}

.container{
    display: grid;
    place-items: center;
    height: 100vh;
    width: 100vw;
}

.wrapper{
    border-style: solid;
    border-color: white;
    border-width: 3px;
    border-radius: 10px;
    box-shadow: 18px 18px 9px black;
}

.consolebox{
    width: min(100vw, 850px);
    height: min(100vh, 450px);

    color: white;
    overflow: auto;
    padding: 3px;
}
.consolebox::selection { background:white; color:#101724; }
.consolebox.scroller{
    scrollbar-color: rgba(0, 0, 0, 0) red;
}

.fixedtext{
    line-height: 18px;
    width: 100%;
    word-break: break-all
}
.fixedtext::selection { background:white; color:#101724; }

.lastline{
    line-height: 18px;
    display: flex
}

.prefix{
    white-space: nowrap;
    width: fit-content;
}
.prefix::selection { background:white; color:#101724; }

textarea{
    font-size: 15;
    font-family: 'Ubuntu Mono';
    background: rgba(16, 23, 36, 0);
    color: white;
    width: 100%;
    height: 100%;
    resize: none;
    border: none;
    padding-top: 0px;
    padding-left: 0;
    word-break: break-all;
    line-height: 18px;
}
textarea::selection { background:white; color:#101724; }
textarea:focus { outline: none !important; }



.green{
    color: #6cd15a
}
.blue{
    color: #58b3fc
}
.red{
    color: #ff3030
}
.yellow{
    color: #f8ffa8;
}
.aqua{
    color: #00cc9c;
}

.header{
    z-index: 100;
    height: 30px;
    background-color: #29333d;
    line-height: 30px;
    text-align: center;
    border-radius: 7px 7px 0 0;
    box-shadow: 0px 5px 5px black;
    color: lightgray
}

a{
    color: #f8ffa8;
}
