:root {
    --blue: #3cc2ef;
    --red: #ed6077;
    --grey: #666b80;
    --black: #402f44;
    --transp-black: rgba(0, 0, 0, 0.1);
    --stroke: 4px solid var(--black);
}

.rspress-doc .rspress-home-hero-text {
    border: 15px solid #313B50;
    background-color: #5A5F5F;
    border-radius: 3px;
    box-sizing: border-box;
}

.screen {
    background: var(--rp-home-hero-name-background);
    background-clip: text;
    -webkit-text-fill-color: var(--rp-home-hero-name-color);
    font-size: 3rem;
    font-weight: 700;
}

@media(min-width: 640px) {
    .sm\:max-w-4xl {
        max-width: 77rem;
    }

    .sm\:max-w-xl {
        max-width: 55rem
    }
}

@media(min-width: 1024px) {
    .lg\:pb-2 {
        padding-bottom: 1.5rem;
    }
}

.pb-12 {
    padding-bottom: 1rem;
}

.chat {
    display: flex;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.chat-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.chat-bubble {
    position: relative;
    padding: 1rem;
    border-radius: 1rem;
    background-color: #e0e7ff;
    color: #1e40af;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}


.chat-end {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.chat-end .chat-bubble {
    background-color: #e0e7ff;
    color: #1e40af;
    margin-left: 80px;
}

@media (max-width: 768px) {

    .chat-avatar {
        width: 50px;
        height: 50px;
    }

    .chat-bubble {
        font-size: 0.875rem;
        padding: 0.75rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat,
.chat-end {
    animation: fadeIn 0.3s ease-out;
}