body{
    background-color: black;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white; 
    font-family: 'msgothic';
}

.computer{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    filter: hue-rotate(340deg);
    pointer-events: none;
}

.screen{
    background: linear-gradient(white, #d2e5fa);
    position: absolute;
    top: 70;
    left: 370;
    width: 41%;
    height: 65%;
    z-index: 2;
    overflow: hidden;
}

.screen::before {
    content: " ";
    display: block; position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(0,0,0,0) 50%, rgba(0,0,0,0.25) 50%);
    z-index: 288;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.discl{
    background-image: linear-gradient(#c8e2ff, white);
    box-shadow: 0px 0px 5px gray;
    padding-top: 2%;
    height: 5%;
    font-family: 'msgothic';
    font-weight: lighter;
    font-size: small;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white; 
}

.left{
    height: 100%;
    width: 20%;
    background-color: transparent;
    margin-left: 2%;
    margin-top: 2%;
    float: left;
}

.left div{    
    border-radius: 10px;
    box-shadow: #aed4ff 0px 0px 10px;
}

.state{
    background: linear-gradient(white, #efefef);
    border-radius: 10px;
    box-shadow: #aed4ff 0px 0px 10px;
    height: 20%;
    padding: 3%;
    font-family: 'msgothic';
    font-size: small;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white; 
    overflow: hidden;
}

.image1{
    height: 25%;
    margin-top: 10%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: #aed4ff 0px 0px 10px;
}

.chat{
    background: linear-gradient(white, #efefef);
    font-size: small;
    margin-top: 10%;
    overflow: hidden;
    height: 32%;
    padding: 5%;
}

.box{
    background-color: rgba(0, 0, 0, 0) !important;
    box-shadow: none !important;
    height: 83%;
    overflow-y: scroll;
    padding-top: 3%;
    padding-bottom: 3%;
}

.chatbox{
    height: 15%;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.msgsend{
    width: 80%;
    height: 100%;
    border: 0;
    background-color:#d2e5fa;
    font-family: 'ms-gothic';
    margin-right: 0;
    position: relative;
}

.msgsend:focus{
    outline: 0;
}

.submitt{
    height: 100%;
    width: 18%;
    padding: 0;
    margin-left: 3%;
    position: relative;
    background-color:#d2e5fa;
    border: solid 1px gray;
    box-shadow: inset #9aaec4 -2px -2px; 
    border-radius: 5px;
}

.submitt:hover{
    background-color:#a1c2e6;
    box-shadow: inset #8095ab -2px -2px;
}

.state.darkmodex{
    background-image: linear-gradient(black, #1f1f1f);
    border-radius: 10px;
    box-shadow: #aed4ff 0px 0px 10px;
    height: 20%;
    padding: 3%;
    font-family: 'msgothic';
    font-size: small;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white; 
    overflow: hidden;
}

.middle{
    position: absolute;
    top: 10%;
    left: 25%;
    width: 45%;
    height: 85%;
    /* overflow-y: scroll; */
    overflow-x: hidden;
    border-radius: 10px;
    box-shadow: #aed4ff 0px 0px 10px;
    background: radial-gradient(white, #aed4ff);
}

.right{
    background-color: transparent;
    height: 100%;
    width: 20%;
    margin-left: 75%;
    margin-top: 2%;
}

.darkmode{
    background: linear-gradient(white, #efefef);
    box-shadow: #aed4ff 0px 0px 10px;
    border-radius: 10px;
    height: 10%;
}

.dark{
    font-family: 'msgothic';
    background: linear-gradient(#a6b9d9, #aed4ff);
    border-radius: 5px;
    border: none;
    font-size: small;
    font-weight: lighter;
    width: 90%;
    margin-left: 5%;
    margin-top: 10%;
    transition: all .5s linear;
}

.dark:hover{
    cursor: pointer;
    background: linear-gradient(#0f367a, #033165);
    color: white;
    transition: all .5s linear;
}

.over{
    position: absolute;
    top: 80;
    color: red !important;
    text-shadow: 0px 0px 10px red !important;
    animation: blink 7s;
    animation-iteration-count: infinite;
}

@keyframes blink{
    0%{
        opacity: 0;
    }
    30%{
        opacity: 0;
    }
    31%{
        opacity: 1;
    }
    33%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}

@font-face {
    font-family: "msgothic";
    src: url(MSGOTHIC.TTF);
}

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-track{
    background-image: linear-gradient(rgb(193, 193, 193), rgb(151, 151, 151));
    box-shadow: inset -2px -2px rgb(95, 95, 95), inset 2px 2px rgb(205, 205, 205);
}

::-webkit-scrollbar-thumb{
    background-image: linear-gradient(rgb(162, 178, 243), rgb(144, 171, 249));
    box-shadow: inset -1px -1px rgb(53, 96, 213), inset 1px 1px white, 0px 2px rgb(95, 95, 95);
}

::-webkit-scrollbar-thumb:hover{
    background-image:linear-gradient(#4b8cf3, #4b8cf3);
    box-shadow: inset -1px -1px rgb(47, 85, 187), inset 1px 1px white, 0px 2px rgb(95, 95, 95);
}
