* {
    margin: 0;
    padding: 0;
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    width: 100%;
}

/*Header*/
.header {
    background-color: rgb(0, 0, 0);
    width: 100%;

}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    justify-content: center;
}

.menu a {
    text-decoration: none;
    color: white;
    margin: 10px;
}

/*Content*/

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 90vh;
    padding: 10px;
    background-color: #000000;
}

/*Auth*/

.auth {
    display: flex;
    flex-direction: column;
}

.auth input {
    padding: 5px;
    font-size: 1rem;
    margin: 10px;
}

/*messageView*/

.messageForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.messageForm textarea {
    padding: 10px;
    border-radius: 10px;
}
.messageForm input {
    padding: 10px;
    border-radius: 10px;
    width: 200px;
}

.messageView {
    width: 400px;
    color: white;
}
.messageLeft, .messageRight{
    padding: 10px;
    border-radius: 10px;
    margin: 5px;
    display: inline-block;
    max-width: 80%;
    clear: both;

}
.messageLeft{
    text-align: left;
    background-color: rgba(93, 171, 238);
    float: left;
}
.messageRight{
    text-align: right;
    background-color: rgba(189, 160, 255);
    float: right;
}
.login{
    font-size: 0.8rem;
    color: black;
}
.messageP{
    margin: 5px;
}
.date_chat{
    font-size: 0.5rem;
    color: black;
}
.messageImages{
    max-width: 250px;
}
/*Footer*/

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 100%;
    background-color: rgba(0, 0, 0);
    color: white;
}
