.logo{
    display: block;
    margin: auto;
    width: 100px;
    height: 100px;
}

body{
    height: 100vh;
    background-image: linear-gradient(rgb(30, 169, 211),rgb(96, 26, 146));
}

.container{
    max-width: 1000px;
    border: 2px solid;
    margin: auto;
    height: 60vh;
    overflow-y: auto;
}

.message{
    background-color: grey;
    padding: 10px;
    width: 25%;
    margin: 10px 5px;
    border: solid;
    border-radius: 10px;
    overflow-y: auto;
}

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

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

#send-container{
    display: block;
    text-align: center;
}

#messageInp{
    width: 64%;
    border-radius: 5px;
    border: 3px solid;
    height: 30px;
}

.btn{
    height: 33px;
    border-radius: 5px;
    border: 3px solid;
}