@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols+2&display=swap');

body {
    font-family: "Google Sans Code", "Gulim", AppleGothic, sans-serif;
    font-size: 14px;
    letter-spacing: -0.4px;
    line-height: 24px;
}
#box {
    position: absolute;
}
textarea {
    resize: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    font-family: "Google Sans Code", "Gulim", AppleGothic, sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.382);
    letter-spacing: -0.4px;
    text-align: left;
    text-indent: 0;
    max-height: 1.2em;
    white-space: nowrap;
    overflow: hidden;
}
textarea:focus {
    outline: none;
    box-shadow: none;
    color: black;
}
button {
    font-family: "Noto Sans Symbols 2", sans-serif;
    font-size: 16px;
    max-height: 1em;
    margin-right: 10px;
}
button:hover {
    cursor: pointer;
    color: gray;
}
.menu_text {
    padding-left: 30px;
}
a {
    font-family: "Noto Sans Symbols 2", "Google Sans Code", "Gulim", AppleGothic, sans-serif;
    text-shadow: 0.5px 0.5px 10px #ffffff;
    color: #b4b4b4;
    text-decoration-line: none;
}
a:hover {
    text-decoration-line: underline;
    color: black;
}
.chat {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 0;
    overflow: hidden;
    font-family: "Google Sans Code", "Gulim", AppleGothic, sans-serif;
    font-size: 14px;
    letter-spacing: -0.4px;
    line-height: 21px;
    padding-right: 10px;
}
#list {
    width: 100%;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    -webkit-overflow-scrolling: touch;
}
.chat-mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    pointer-events: none;
    z-index: 10;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.95),
        rgba(255,255,255,0)
    );
}
#list li {
    white-space: pre-wrap;
}
ul {
    padding-left: 0;
}
ul li {
    font-size: 0.8em;
    padding-left: 0;
    list-style-type: none;
    padding-bottom: 15px;
}