* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.564);
    background-image: url("Resourses/background.jpg");
    background-size: cover;
    background-position: center;
}

.container {
    width: 100%;
    height: 15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to right, #ffffff, #ffffff, #17fff7, #505dda, #132097);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container h1 {
    font-size: 7.5rem;
}

.container h2 {
    font-size: 2.5rem;
}

.promt-area {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
}

#promt {
    width: 55%;
    height: 65%;
    font-size: 16px;
    font-weight: 600;
    color: black;
    padding: 10px;
    border: 1.35px solid aliceblue;
    border-right: none;
    outline: none;
    border-radius: 2em 0 0 2em;
    background-color: rgba(245, 245, 245, 0.75);
    box-shadow: 2px 2px 8px #4b4b4b inset, -2px -2px 8px #4b4b4b inset;
    overflow-y: auto;
}

#btn {
    width: 7%;
    height: 65%;
    border: 1.35px solid aliceblue;
    border-left: none;
    outline: none;
    border-radius: 0 2em 2em 0;
    background-color: #505dda;
    transition: 0.5s all;
    cursor: pointer;
}

#btn:hover {
    background-color: #2836b2;
}

#promt::placeholder {
    color: black;
    opacity: 0.71
}

.chatbox-container {
    width: 100%;
    max-height: calc(100vh - 20%);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.user-chatbox {
    width: 100%;
    font-size: 16px;
    font-weight: 550;
    color: whitesmoke;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 25px 25px 0 25px;
    background-color: rgba(32, 178, 171, 0.634);
}

.ai-chatbox {
    width: 100%;
    font-size: 16px;
    font-weight: 550;
    color: whitesmoke;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 25px 25px 25px 0;
    background-color: rgba(240, 128, 128, 0.799);
}