main>launch-screen {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 15vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

main>launch-screen>screen-window {
    display: grid;
    grid-template-rows: [header] 20px [body] auto [footer] 20px;
    background-color: #1B2A32;
    margin: auto;
    border: 2px solid #aebbc4;
    width: 75%;
    height: 75%;
}

main>launch-screen>screen-window>window-header {
    display: grid;
    grid-template-columns: [body] auto [end] 1em;
    color: #0d1417;
    background-color: #aebbc4;
}

main>launch-screen>screen-window>window-header>header-title {
    grid-area: body;
    font-size: 16px;
    font-weight: lighter;
}

main>launch-screen>screen-window>window-header>header-close {
    grid-area: end;
}

main>launch-screen>screen-window>window-header>header-close:hover {
    color: #ffffff;
    cursor: pointer;
}

main>launch-screen>screen-window>window-body>body-item>text-console>textarea {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    resize: none;
    color: inherit;
    background-color: inherit;
    border: 0px;
    word-break: break-all;
}

main>launch-screen>screen-window>window-body>body-item>text-console>textarea:focus {
    outline: none;
}
