body {
    height: 100vh;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(84, 84, 176));
}

.logo {
    display: block;
    margin: auto;
    width: 50px;
    height: 50px;
    margin: auto;
    padding: auto;
    border: 2px solid black;
}

h2 {
    margin-top: 12px;
    font-size: 30px;
    font-family: 'Verdana', Geneva, Tahoma, sans-serif;
    text-align: center;
    background-color: slateblue;
    border: 2px solid whitesmoke;
}

.container {
    max-width: 955px;
    background-color: whitesmoke;
    border: 4px solid black;
    margin: auto;
    height: 60vh;
    padding: 33px;
    overflow-y: auto;
    margin-bottom: 23px;

}

.message {
    background-color: cornflowerblue;
    width: 24%;
    padding: 10px;
    margin: 17px 12px;
    border: 2px solid black;
    border-radius: 10px;
}

.left {
    float: left;
    clear: both;
}

.right {
    float: right;
    clear: both;
}

#send-container {
    display: block;
    margin: auto;
    text-align: center;
    max-width: 985px;
    width: 100%;
    text-align: center;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#messageInp {
    width: 80%;
    border: 4px solid black;
    border-radius: 8px;
    height: 34px;
    font-size: 22px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.Btn {
    background-color: blueviolet;
    cursor: pointer;
    border: 4px solid black;
    border-radius: 8px;
    height: 40px;
    width: auto;

    padding: 10px 20px;
}

.Btn:hover {
    /* Hover styles */
    background-color: whitesmoke;

}