@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --colorDark: #191919;
    --colorMedium: #262625;
    --colorLight: #40403E;
    --color1: #FAFAF7;
    --color2: #207FDE;

    --ff: "Poppins", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--ff) Arial, sans-serif;
}

button {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

nav {
    display: flex;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    color: var(--color1);
    background-color: var(--colorDark);
}

.logo {
    height: 1rem;
    aspect-ratio: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.buttonWhite {
    display: flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: var(--color1);
    cursor: pointer;
    color: var(--colorDark);
}

button {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}


body {
    display: flex;
    flex-direction: column;
    color: var(--color1);
    background-color: var(--colorMedium);
    animation: slideIn2 2s;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-grow: 1;
    flex-direction: column;
    align-self: stretch;
}

.chatSection {
    display: flex;
    width: 100%;
    padding: 2rem;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.askAnything {
    display: flex;
    width: 27.72506rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.askAnything h3 {
    align-self: stretch;
    text-align: center;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.disclaimer {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(250, 250, 247, 0.8);
}

.askAnything .disclaimer {
    text-align: center;
}


.text_content a {
    color: var(--color2);
}

.text_content a:hover,
.text_content a:focus {
    text-decoration: underline;
}

.chatBox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    align-self: stretch;
}

.userBox {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    align-self: stretch;
}

.textBox {
    display: flex;
    padding: 0.625rem;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 0.625rem;
    flex-wrap: wrap;
    border-radius: 0.625rem;
    background: var(--color2, #207FDE);
    height: fit-content;
}

.textBox p {
    color: var(--color1, #FAFAF7);
    font-family: var(--ff), Arial, sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.gray {
    background: var(--colorLight);
}

.question_and_epitalk {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    align-self: stretch;
}

.epitalkBox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    align-self: stretch;
}

.questionBtnBox {
    display: flex;
    padding: 0.625rem 0;
    align-items: center;
    align-content: center;
    gap: 0.625rem;
    align-self: stretch;
    flex-wrap: wrap;
    border-radius: 0.5rem;
}

.questionButton {
    display: flex;
    padding: 0.625rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.5rem;
    background: none;
    border: 1px solid var(--color1, #FAFAF7);
    color: var(--color1, #FAFAF7);
    font-family: var(--ff), Arial, sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.questionButton:hover {
    background: var(--color1);
    color: var(--colorDark);
}

.text_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: stretch;
    text-align: center;
    text-wrap: balance;
}


.boxName {
    height: 1rem;
    align-self: stretch;
    color: var(--color1, #FAFAF7);
    font-family: var(--ff), Arial, sans-serif;
    font-size: 0.6875rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.boxName_reverse {
    height: 1rem;
    align-self: stretch;
    color: var(--color1, #FAFAF7);
    font-family: var(--ff), Arial, sans-serif;
    font-size: 0.6875rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-align: right;
}