html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
    background-color: ghostwhite;
}

.maincontainer {
    background-color: ghostwhite;
}

/* chatbox title */
.titlesmall {
    text-shadow: 1px 1px #000;
    font-size: 1.25em;
    width: fit-content;
}

.titlesmall:hover {
    cursor: pointer;
}

#chat {
    color: coral;
    font-weight: bold;
}

#deux {
    color: lightskyblue;
    font-weight: bold;
    font-style: italic;
}

/* chatbox styling */
.inputarea {
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 1px solid black;
    position: absolute;
    bottom: 0;
    width: calc(100vw - 10px);
}

.message {
    padding-left: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.chatbox {
    height: auto;
    display: flex;
    flex-direction: column;
}

.messages {
    max-height: calc(100vh - 65px);
    overflow-wrap: break-word;
    overflow-y: auto;
}

.inputarea input {
    flex: 1;
    margin-right: 5px;
    padding: 5px;
}

.inputarea {
    display: flex;
    align-items: center;
    padding: 5px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
    color: blue;
}

.clickme {
    font-size: 0.7em;
    font-style: italic;
    color: gray;
}

.clickme:hover {
    cursor: pointer;
    text-decoration: underline;
}