<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    height: 100%;
}

body {
    min-height: 100%;
}

.logo-box img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
}
body {
    background: url(/images/neural-background.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.chat-box{
    background: rgba(0, 0, 0, 0.75);
    background-size: cover;
    height: 600px;
}
.chat-messages{
    padding-top: 10px;
    list-style: none;
    height: 69%;
    border-bottom: 1px solid #888888;
}

.chat-box ul{
    overflow-y: scroll;
}

.chat-messages li{
    overflow-wrap: break-word;
    color: #fff;
}

.main-screen{
    margin-top: 50px;
}

.message{
    margin-left: -30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #353535;
}

#send-message{
    margin-left: -15px;
}

#message-text{
    height: 100px;
    background: #fff;
    margin-left: 10px;
    border-radius: 10px;
    padding: 10px;
    overflow: scroll;
    overflow-x: hidden;
    border: 1px solid #656363;
}

.chat-body p{
    font-size: 13px;
}

.video-center{
    -webkit-box-shadow: 3px 3px 45px 1px rgb(255, 209, 255);
    -moz-box-shadow: 3px 3px 45px 1px rgb(255, 209, 255);
    box-shadow: 3px 3px 45px 1px rgb(255, 209, 255);
}

@media only screen and (max-width: 768px){
    .chat-box{
        height: 400px;
    }
    .chat-messages{
        height: 175px;
    }

    .message-box .col-sm-10{
        width: 80%;
    }

    .message-box .col-sm-2{
        width: 10%;
    }

    #message-text{
        width: 100%;
    }
}

.description-box{
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.75);
    background-size: cover;
    padding: 10px;
    color: #fff;
}

html{
    background: #000000;
}

#message-text:focus, #message-text:active{
    outline: none;
}

.chat-container img{
    max-width: 100%;
}

.large-text{
    color: #fff;
    font-size: 22px;
}

.creator-image{
    max-width: 100%;
    margin-bottom: 15px
}

.chat-container h2{
    padding: 15px 5px 15px 5px;
    font-size: 20px;
    text-align: center;
    border-bottom: 1px solid #888888;
}


.chat-container h2{
    color : #ffffff;
}</pre></body></html>