.boogaloo-regular {
  font-family: "Boogaloo", serif;
  font-weight: 400;
  font-style: normal;
}

body {
    font-family: "Boogaloo", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #4158D0;
    background-image: linear-gradient(45deg, #4158D0 0%, #C850C0 45%, #FFCC70 100%);
    margin: 0;
    padding: 0;
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#chatbot {
    width: 90vw;
    height: 80vh;
    background-color: #fff;
    border: 4px solid;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

#chatbox {
    display: flex;
    flex-direction: column;
    height: 80vh;
}

#messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
}

.message {
    margin: 5px 0;
}

.user {
    text-align: right;
    color: #007bff;
}

.bot {
    text-align: left;
    color: #333;
}

#chat-form {
    display: flex;
    border-top: 1px solid #ddd;
}

#user-input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
}

#user-input:focus {
    outline: none;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 0;
}

button:hover {
    background-color: #0056b3;
}

#suggestions {
    display: flex;
    flex-wrap: wrap;
    background: black;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: #f9f9f9;
}

.suggestion {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
}

.suggestion:hover {
    background-color: #0056b3;
    border: solid black 2px inset;
}

#how {
    justify-self: center;
    font-size: xx-large;
}

.link{
    color: navy;
    text-decoration: none;
}
