@font-face {
 font-family: 'Roboto';
 src: url("../Robot/Roboto-Regular.tff") format("truetype"),
}

html{
    height: 90vh;
}
body {
    background-color: #31353D;
    color: white;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: 'Roboto';
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    overflow: hidden;
}

.pseudo{
    color: orange;
    font-weight: bold;
    white-space: nowrap;
}

.general{
    display: flex;
}

.msg{
    display: flex;
    flex-wrap: wrap;
    word-break: break-all;
    text-align: start;
}

main{
    display: flex;
    flex-direction: column-reverse;
    width: 50vh;
    background-color: #3B4458;
    border:0px solid red;
    border-radius: 20px;
    padding: 20px;
    height: 90%;
}

article{
    overflow-y: scroll;
}
/* scroll barre */
article::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

article::-webkit-scrollbar-track {
  background: #3B4458; /* color of the tracking area */
}

article::-webkit-scrollbar-thumb {
  background-color: #31353D; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
}

input{
    height: 20px;
}

textarea, input{
    background-color:#31353D;
    border: 0px;
    resize : none;
    color: white;
    font-weight: bold;
}
button{
    border: 0px;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    text-align: center;
    background-color: #31353D;
}

button i{
    font-size: 20px;
    color: white;
}

form{
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding-top: 20px;
}