body {
    margin: 20px 20px 20px 20px;
    background-color: black;
    font: medium;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container{
    max-width: 1500px;
    width: 100%;
    align-items: center;
    display: flex;
    height: 190px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
}

#emoji-btn {
    border: none;
    width: 8%;
    text-align: center;
    margin-top:20px;
    margin-left: 5px;
    padding:10px;
    height: 50px;
    cursor: pointer;
    border: 5px solid rgba(10, 100, 197);
    text-decoration: none;
    border-radius: 19px;
}

#emoji-picker {
    position: absolute;
    bottom: 60px;
    right: 10px;
    z-index: 1000;
}


.text1{
    text-decoration: underline;
    font-size: 30px;
    word-spacing: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.logo {
    float: left;
    border: 10px solid rgba(10, 100, 197, 0.8);
    margin: 15px;
    height: 150px;
    width: 150px;
    border-radius: 100px;
}

.container1 {
    max-width: 1500px;
    width: 100%;
    box-sizing: border-box;
    display: block;
    margin: auto;
    border-radius: 50px;
    padding: 50px;
    height: 350px;
    border: 10px solid rgba(10, 100, 197, 0.8);
    background-color: rgba(255, 255, 255, 0.874);
    overflow-y: auto;
}

.container1::-webkit-scrollbar {
    display: none;
  }

.message {
    box-sizing: border-box;
    margin: 5px;
    color: white;
    font-family: system-ui,-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgb(0, 0, 0, 0.7);
    width: max-content;
    padding: 15px;
    border-radius: 25px;
    border: 5px solid rgba(10, 100, 197);
}

.right {
    float: right;
    clear: both;
}

.left {
    float: left;
    clear: both;
}

.send{
    /* padding: auto; */
    text-align: center;
    display: block;
    margin: auto;
    width: 100%;
    max-width:1500px;
}

#send-con{
    display: flex;
    margin: auto;
    text-align: center;
    max-width:1500px;
    width: 100%;
}
#messageInp{
    margin-top:20px;
    border: 5px solid rgba(10, 100, 197);
    width: 88%;
    border-radius: 19px;
    height:30px;
    padding:7px;
}
.btn{
    /* display: flex; */
    width: 8%;
    text-align: center;
    margin-top:20px;
    margin-left: 5px;
    padding:10px;
    height: 50px;
    cursor: pointer;
    border: 5px solid rgba(10, 100, 197);
    text-decoration: none;
    border-radius: 19px;

}
.btn:hover{
    color: black;
    background-color:greenyellow;
    border: 5px solid white;
    scale: 1.1;
}