body {
    height: 100vh;
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
    background-color: rgb(32, 32, 32);
}

#chat {
    /* background-color: rgb(54, 54, 54); */
    width: 100%;
    height: fit-content;
    max-height: calc(100vh - 20px); /* Ajuste la hauteur pour compenser le padding */
    padding: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    bottom: 0;
}

#message {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 15px;
    margin-right: 25px;
}

#infos {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    animation: infosIn .3s ease-out;
}

#badges{
    margin-right: 0.3rem;
}

#username{
    font-weight: 600;
    font-size: 1.15rem;
}

#username::after {
    content: ' :';
}

#content {
    background-color: white;
    font-weight: 500;
    font-size: 1.15rem;
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 25px;
    border-radius: 10px;
    overflow: hidden;
    animation: contentIn .3s ease-out;
}

img {
    height: 1.25rem;
    vertical-align: middle;
}

#content img {
    height: 1.75rem;
    vertical-align: middle;
}

@keyframes infosIn {
    0% {
        opacity: 0;
        translate: 50px ;
        -webkit-transform: translate(50px);
    }
}

@keyframes contentIn {
    0% {
        opacity: 0;
        translate: 100px;
        -webkit-transform: translate(100px);
    }
}