body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
}

nav{
    background-color: red;
    height: 10vh;
}

p {
    font-size: large;
}
      
#chat-container{
    background-color: rgba(10,10,10,.1);
    width: 100%;
    height: 60vh;
    overflow: scroll;
    padding: 1rem;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#chatArea{
    width: 90%;
}

#chatArea::-webkit-scrollbar{
    display: none;
}

footer{
    min-height: 10vh;
}

#inputs-container{
    width: 90vw;
    margin-left: 3rem;
}

.userInputContainer {
    margin: 0 10rem 0 10rem;
}

::placeholder{
    color: black;
}

.userMsg{
    color: red;
}

.text-center{
    text-align: center;
}