
body {
  background-color: lightpink;
  font-family: Verdana;
}

h1 {
  font-size:3em;
}
.small-word {
  font-size: 0.5em;
}




ul {
  border-style: double;
  border-width: thick;
  border-color: hotpink;
  padding-right: 0;
}



.chat-container {
    width: 300px;
    height: 400px;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.chat-header {
    background-color: green;
    color: white;
    padding: 10px;
    text-align: center;
}
.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.chat-input-area {
    display: flex;
    padding: 10px;
}
#message-input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 5px;
}

#send-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}
    
    
    
    
    
