﻿body {
    background-color: rgba(10, 22, 33, 1);
    background-image: url(Background.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: auto;
    font-family: "narkiss";
}

input, textarea {
    font-family: "narkiss";
    font-size:1.2em;
}
::placeholder { color: white;  opacity: 1; }
div.LogoGroup { width: 110px; height: 102px; overflow:hidden; position: relative; }
div.LogoGroup > img.logo { position: absolute; top: -10px; left: -18px; }
div.LogoGroup_B { width: 240px; height: 223px; overflow:hidden; position: relative; }
div.LogoGroup_B > img.logo { position: absolute; top: -10px; left: -8px; }

img.logoBG {
    animation: spin 15s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}

form.AskGroup {
    margin: .5em 1em;
    display: flex;
    gap: 20px;
    padding: 10px 15px 10px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.05);
    justify-content: space-between;
    mask: linear-gradient(-60deg, #000a 30%, #ffff, #000a 70%) right / 350% 100%;
    animation: shimmer 2.5s infinite;
}
@keyframes shimmer { 100% { mask-position: left; } }
    form.AskGroup > input { outline: none; }
    form.AskGroup > input[type=text] {
        padding-inline: 1em;
        background-color: transparent;
        width: 100%;
        border: none;
        color: white;
    }

ul.ChatBubbles {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

ul.ChatBubbles > li {
    background-color:white;
    box-shadow: 0px 7px 30px 0px rgba(0, 0, 0, 0.25);
    border-top-left-radius: 100px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 100px;
    padding: 15px 20px 15px 20px;
}

div.BottomText {
    color: white;
    font-size: 80%;
    text-align: center;
}