html, body {
    overflow: hidden;
    margin: 0;
    font-family : sans-serif;
}

.box {
    position : absolute;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.nom {
    background-color : rgba(0, 0, 0, 0.5);
    color : white;
    padding : .15em 1em .2em;
    border-radius : 100px;
}

.pop {
    font-size: .8em;
}

#indication, #info {
    position : absolute;
    width: 100%;
    text-align: center;

    font-weight: bold;
}

#indication {
    color: white;
    bottom: 100px;
}

#info {
    color: rgb(255, 255, 0);
    bottom: 70px;
}

#chat-input {   
    position : absolute;
    left: 0;
    right: 0;
    margin: auto; 
    bottom: 30px;
    width: 30%;
    height: 30px;
    border: 2px solid black;
    border-radius: 10px;
    z-index: 1;
}

#chat {
    position: absolute;
    bottom: 0;
    width: 30%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0px 15px 0px 0px;
    z-index: 1;
}

.message {
    color: white;
    margin: 15px;
}

#indice-popularite {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0px;
    padding: 10px;
    background-color: rgb(87, 179, 92);
    border-radius: 0px 0px 0px 10px;
    color: black;
    font-weight: bold;
}