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

body {
    font-family: monospace;
    background: black;
}

.app {
    width: 100vw !important;
}

textarea {
    width: 35em;
    height: 8em;
    padding: .5em;
    outline: none;
    background: transparent !important;
    resize: vertical;
    border: none;
    -webkit-box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 0.5px 9px 0 rgba(0, 0, 0, 0.13);
    box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 1px 9px 0 rgba(0, 0, 0, 0.13);
    border: solid 1px rgb(48, 48, 48);
}

input {
    width: 10rem !important;
    padding: 0;
    border-radius: 0;
    font-size: medium;
    border: none;
    background: transparent;
    font-family: monospace;
    color: white;
}

input::placeholder {
    font-weight: bold;
    color: lightgray;
}

input:focus {
    outline: 1px solid rgba(255, 255, 255, 0.137) !important;
}

@media screen and (max-width: 600px) {
    textarea {
        width: 100%;
    }
}

a {
    cursor: pointer;
    text-decoration: none;
    color: white;
}

a:not(.modal__btn):hover {
    background: white;
    color: black;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__content {
    width: 40rem;
    height: 20rem;
    background: rgba(0, 0, 0, 0.8);
    outline: 1px solid white;
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    font-family: monospace;
}

.modal__content span {
    height: 100%;
    overflow: auto;
}

.modal__btn {
    padding: 0.2rem 0.6rem;
    outline: 1px solid white;
    background: rgba(0, 0, 0, 0.8);
    justify-self: flex-end;
    box-shadow: none;
}

.modal__btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed !important;
}

.modal__btn:hover {
    padding: 0.2rem 0.8rem;
    box-shadow: rgb(255, 255, 255) 0 0 0.5rem;
}