body {
    background: #212121;
    color: white;
    font-family: Roboto, sans-serif;
}

.about-content {
    margin: auto;
    width: 70%;
    text-align: center;
    border: auto;
}

.about-content h1 {
    font-size: 50px;
}

.username {
    font-size: 80%;
    font-weight: bold;
}

.main-content {
/*
    display: flex;
    margin: auto;
    text-align: center;
    box-sizing: border-box;*/
    margin-top: 5%;
    margin-bottom: 0;
    justify-content: center;
    flex-direction: column;
    height: 80vh;
    overflow-y: scroll;
    flex-grow: 8

    background: red;
}

.main-flexbox {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.message {
    margin: auto;
    margin-bottom: 10px;
    padding: 0px 25px;
    text-align: left;
    width: 60%;
    color: white;
    border-radius: 25px;
}

.message-user {
    background: #383838;
}

.message-scott {
    background: #5e5e5e;
}

.messages {
    margin-bottom: 10%;
    position: relative;
    display: flex;
    margin: 5px auto 0px auto;
    padding: 10px 0px;
    flex-direction: column-reverse;
    width: 80%;
    overflow: scroll;
}

.textbox-parent {
    position: fixed;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    bottom: 0px;
    width: 100%;
    display: flex;
}

.textbox {
    background: #323232;
    display: flex;
    margin: auto;
    width: 80%;
    border-radius: 25px;
}


.text_input {
    justify-content: flex-start;
    margin: auto;
    margin-left: 15px;
    height: 30px;
    border-radius: 5px;
    background-color: transparent;
    white-space: initial;
    color: white;
    outline: none;
    border: none;
    width: 100%;
}

.send_button {
    justify-content: flex-end;
    padding: 4px 8px;
    margin: 10px;
    height: 30px;
    border-radius: 50%;
    background: white;
    color: #212121;
    border: none;
}

.conversation {
    background: #323232;
    display: flex;
    margin: auto;
    width: 80%;
    padding: 10px 10px;
    border-radius: 25px;
}

.conversation p {
    background: #151515;
    margin: auto 10px;
    padding: 10px;
    border-radius: 15px;
}

.conversation button {
    border-radius: 15px;
    background: #151515;
    color: white;
}

.conversation button:hover {
    background: #252525;
}

.navbar {
    width: 100%;
    z-index: 5;
    padding: 10px;
    background: #212121;

    flex-grow: 1;
}

footer {
    width: 100%;
    padding: 10px;
    background: #212121;
}

.navbar a, button {
    border: none;
    background: none;
    display: block;
    color: white;
    text-align: center;
    padding: 4px 8px;
    margin: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
}



.navbar img {
    height: 32px;
    margin: auto 5px;
}

.navbar a:hover, button:hover {
    background-color: #545454;
}

.navbar a.icon {
    display: none;
}
}