body, html {
    overflow: hidden;
}

#NumberOnline {
    color: greenyellow;
    font-size: 20pt;
}

.enviada {
    color: white;
    background-color: blue;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 14px;
    padding: 6px 6px;
    margin-right: 5px;
    margin-left: 75px;
}

.recebida{
    color: white;
    background-color: black;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 14px;
    padding: 0px 6px;
    margin-left: 5px;
    margin-right: 75px;
}

span {
    font-weight: bold;
    font-size: 13pt;
}

.somida {
    display: none;
}

#interfaceChat{
    background-color:rgba(0,0,0, 0.6);
    width: 500px;
    height: 555px;
}

#chat {
    border:black 1px solid;
    width: 100%;
    height: 500px;
    background-color: #ccc;
    overflow-x:hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

#campo {
    width: 100%;
    box-sizing: border-box;
    background-color:rgba(29, 26, 26, 0.1);
    color: white;
}

#InformarNick {
    width: 500px;
    height: 555px;
    background-color: black;
    position: absolute;
    box-sizing: border-box;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 150px;
}

#campoDoNick {
    position: absolute;
    margin: 0px;
    bottom: 250px;
    width: 90%;
    font-size: 20pt;
    background-color: black;
    color: white;
    border: white solid 3px;
    border-radius: 10px;
    box-sizing: border-box;
}

#titulo {
    color: white;
    text-align: center;
    font-size: 40pt;
}

input[type="submit"] {
    background-color:transparent;
    font-size: 0px;
    background-image: url('botao.png');
    background-repeat: no-repeat;
    background-size: 32px 32px;
    width: 32px;
    height: 32px;
    border: none;
    display: none;
}

#subName {
    display: none;
}


/* scrollBar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0, 1);
}
