body {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column; 
}

#information-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#question-container {
    margin: 20px 0px 0px 0px;
    width: 55%;
    max-width: 1200px;
    height: 40vh;
    overflow-y: auto;
    border: 1px solid black;
    text-align: center;
    justify-items: center;
    align-items: center;
    text-align: center; 
}

#chat-container {
    width: 100%;
    display: flex;
    justify-content: center; 
    align-items: flex-end; 
}

#message-container {
    position: absolute;
    bottom: 50px; 
    width: 80%;
    max-width: 1200px; 
    height: 48vh; 
    overflow-y: auto;
    border: 1px solid black; 
}
    #message-container div {
        padding: 5px;
        border: 1px solid black;
    }

#send-container {
    position: fixed;
    padding-bottom: 30px;
    bottom: 0;
    background-color: white;
    max-width: 1200px;
    width: 80%;
    display: flex;
}

#message-input {
    flex-grow: 1;
}

#leaderboard-container {
    margin: 20px 0px 0px 20px;
    width: 18%;
    max-width: 1200px;
    height: 40vh;
    overflow-y: auto;
    border: 1px solid black;
    text-align: center;
    justify-items: center;
    align-items: center;
    text-align: center;
}

#entry-container {

}

.correct-answer {
    background-color: #d9d9db;
}
