@font-face {
    font-family: 'iransans';
    src: url('iransans.ttf');
}

:root {
    /* Backgrounds (lighter modern deep tech) */
    --bg-1: #06162a;
    --bg-2: #081d38;
    --bg-3: #0b2a4d;

    /* Primary (light arkia-style blue/cyan) */
    --primary: #e22a2a;
    --primary-2: #e22a2a;
    --primary-deep: #e22a2a;

    /* Surfaces (clean glass UI feel) */
    --surface: rgba(10, 25, 50, 0.70);
    --surface-2: rgba(255, 255, 255, 0.08);
    --surface-3: rgba(255, 255, 255, 0.12);

    /* Text */
    --text: #f3f8ff;
    --muted: rgba(243, 248, 255, 0.72);
    --border: rgba(255, 255, 255, 0.14);

    /* Shadows */
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.20);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'iransans', sans-serif;
}

html, body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    padding: 0 10px 70px;
    direction: rtl;
    overflow-x: hidden;
    color: var(--text);

    background:
        radial-gradient(circle at top, rgba(77, 184, 255, 0.18), transparent 35%),
        radial-gradient(circle at 20% 80%, rgba(138, 214, 255, 0.12), transparent 30%),
        linear-gradient(180deg, #081c33 0%, #050f1f 100%);

    background-image: url('./Frame 194.jpg'),
        linear-gradient(180deg, #081c33 0%, #050f1f 100%);

    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.03), transparent 30%, transparent 80%, rgba(0,0,0,0.22));
    z-index: 0;
}

.chat-container,
.chat-container-center,
.header,
.input-request {
    position: relative;
    z-index: 1;
}

.chat-container {
    width: 90%;
    min-width: 300px;
    max-width: 480px;
    height: 80vh;
    margin: 0 auto;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255,255,255,0.05)),
        linear-gradient(180deg, rgba(8, 22, 45, 0.92), rgba(6, 16, 32, 0.85));

    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255,255,255,0.10);

    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.08);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.chat-container::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(135deg, rgba(77, 184, 255, 0.12), transparent 30%),
        linear-gradient(315deg, rgba(255,255,255,0.04), transparent 25%);
}

.chat-box {
    display: flex;
    flex-direction: column;
    height: 92%;
}

.chat-header {
    position: relative;

    background:
        linear-gradient(135deg, rgba(231, 33, 33, 0.98), rgba(255, 3, 3, 0.95));

    color: white;
    padding: 16px 18px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;

    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.chat-header::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -8px;
    height: 8px;
    border-radius: 999px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 0, 0, 0.45),
        transparent
    );

    filter: blur(6px);
    opacity: 0.6;
}

.chat-messages {
    padding: 14px 12px 10px;
    flex-grow: 1;
    overflow-y: auto;
    direction: rtl;
    margin-top: 10px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 7px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.16);
    border-radius: 999px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.26);
}

.message {
    max-width: 78%;
    padding: 11px 13px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.8;

    box-shadow: var(--shadow-soft);

    animation: msgIn 0.25s ease both;
    position: relative;
    overflow: hidden;
}

.message::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 45%);
}

.user-message {
    background:
        linear-gradient(180deg, #890207, #830004);

    color: #f7fbff;
    margin-left: auto;
    border-top-right-radius: 4px;

    border: 1px solid rgba(255,255,255,0.10);

    box-shadow: 0 10px 24px rgba(255, 0, 0, 0.167);
}

.bot-message {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));

    color: #f5fff6;
    margin-right: auto;
    border-bottom-left-radius: 4px;

    border: 1px solid rgba(255,255,255,0.10);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	margin-bottom: 40px;
}

/* INPUT */
.chat-input-container {
    width: 70%;
    display: fixed;

    background:
        linear-gradient(180deg, #f95858, #e22a2a);

    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.16);

    padding: 4px;
    gap: 0.35rem;

    top: 120px;
    right: 2px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.08);

    backdrop-filter: blur(20px);
}

.chat-input-container input {
    border-radius: 14px;

    background:
        linear-gradient(180deg, rgb(55, 10, 10), rgb(55, 10, 10));

    width: 100%;
    padding: 12px 14px;

    border: 1px solid rgba(255,255,255,0.08);

    color: white;
    font-size: 15px;
}

.chat-input-container input:focus {
    outline: none;

    border-color: rgba(255, 77, 77, 0.55);

    box-shadow:
        0 0 0 3px rgba(77, 184, 255, 0.18),
        0 0 28px rgba(77, 184, 255, 0.16);
}

.chat-input-container button {
    background:
        linear-gradient(135deg, #ff4d4d 0%, #ff1a1a 45%, #b30b0b 100%);

    color: white;
    padding: 10px 15px;
    margin-right: 10px;

    border: none;
    border-radius: 14px;

    cursor: pointer;

    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.chat-input-container button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);

    box-shadow:
        0 14px 26px rgba(0, 0, 0, 0.24),
        0 0 18px rgba(77, 184, 255, 0.22);
}

/* HEADER */
.header {
    margin-top: 10px;
    width: 100%;
    padding: 10px 26px 8px 8px;

    border-radius: 50px;

    background:
        linear-gradient(135deg, #f83232, #ff0000);

    border: 1px solid rgba(255,255,255,0.16);

    box-shadow:
        0 12px 32px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.08);

    display: flex;
    justify-content: space-between;
    align-items: center;

    backdrop-filter: blur(12px);
}

/* rest unchanged below */

@keyframes msgIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(91,168,255,0.10), transparent 40%, rgba(255,255,255,0.04));
    pointer-events: none;
}

/* rest unchanged */

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(82,212,122,0.10), transparent 40%, rgba(255,255,255,0.04));
    pointer-events: none;
}

@media (min-width: 1200px) {
    .header {
        width: 75%;
        margin-right: 12.5%;
    }
}

h2 {
    padding-bottom: 7%;
    padding-top: 5%;
    color: var(--text);
}

header {
    display: flex;
    align-items: center;
    justify-content: baseline;
    height: 70px;
}

header a {
    font-size: 20px;
    text-decoration: none;
    color: #f6fff8;
    background-color: rgba(255, 255, 255, 0.10);
    padding: 6px 26px;
    margin-left: 15px;
    border-radius: 10px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    transition:
        background-color 0.35s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

header a:hover {
    background-color: rgba(239, 46, 46, 0.799);
    border-color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

header a:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.input-request {
    display: flex;
    position: fixed;
    bottom: 20px;
    width: 95%;
    gap: 10px;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* From Uiverse.io by adamgiebl */
button {
    font-family: inherit;
    direction: ltr;
    font-size: 16px;
    background: white;
    color: #ff0000;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
}

button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

button:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

button:hover svg {
    transform: translateX(1.3em) rotate(-130deg) scale(1.1);
}

button:hover span {
    transform: translateX(5em);
}

button:active {
    transform: scale(0.95);
}

.chat-container-center {
    height: 100%;
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }
    to {
        transform: translateY(-0.1em);
    }
}

@media only screen and (min-width: 600px) {
    .chat-container-center {
        display: flex;
        justify-content: center;
        height: 95%;
    }

    .chat-box {
        height: 87%;
        width: 65%;
    }

    .input-request-full {
        display: flex;
        width: 65%;
        justify-content: center;
        align-items: center;
    }

    .chat-input-container {
        width: 60%;
    }
}

.typing-status {
    display: flex;
    align-items: center;
    margin: 10px;
    font-size: 14px;
    color: rgba(244, 255, 246, 0.72);
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-top-color: #e22a2a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes msgIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 500px) {
    .chat-input-container {
        width: 100%;
        flex-direction: row;
    }

    .message {
        max-width: 86%;
    }

    .chat-container {
        height: 82vh;
    }

    header a {
        font-size: 16px;
        padding: 6px 18px;
        margin-left: 8px;
    }
} 











@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}

.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #030411;
    overflow: hidden;
}

.background span {
    width: 1vmin;
    height: 1vmin;
    border-radius: 1vmin;
    backface-visibility: hidden;
    position: absolute;
    animation: move;
    animation-duration: 23;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.background span:nth-child(0) {
    color: #ff5252;
    top: 45%;
    left: 14%;
    animation-duration: 145s;
    animation-delay: -52s;
    transform-origin: 5vw 18vh;
    box-shadow: 2vmin 0 1.1141885098389033vmin currentColor;
}
.background span:nth-child(1) {
    color: #ff0000;
    top: 77%;
    left: 51%;
    animation-duration: 78s;
    animation-delay: -113s;
    transform-origin: 0vw -17vh;
    box-shadow: -2vmin 0 0.3740859658157867vmin currentColor;
}
.background span:nth-child(2) {
    color: #ff0000;
    top: 17%;
    left: 41%;
    animation-duration: 217s;
    animation-delay: -155s;
    transform-origin: 14vw 13vh;
    box-shadow: 2vmin 0 0.8699385945614623vmin currentColor;
}
.background span:nth-child(3) {
    color: #ff0000;
    top: 50%;
    left: 50%;
    animation-duration: 153s;
    animation-delay: -57s;
    transform-origin: -2vw 5vh;
    box-shadow: 2vmin 0 1.173687133342936vmin currentColor;
}
.background span:nth-child(4) {
    color: #ff0000;
    top: 32%;
    left: 63%;
    animation-duration: 212s;
    animation-delay: -236s;
    transform-origin: 8vw -15vh;
    box-shadow: -2vmin 0 0.37233526027688624vmin currentColor;
}
.background span:nth-child(5) {
    color: #ff0000;
    top: 10%;
    left: 59%;
    animation-duration: 128s;
    animation-delay: -212s;
    transform-origin: 20vw -4vh;
    box-shadow: 2vmin 0 1.0275832765610753vmin currentColor;
}
.background span:nth-child(6) {
    color: #ff5252;
    top: 76%;
    left: 4%;
    animation-duration: 51s;
    animation-delay: -237s;
    transform-origin: 18vw -13vh;
    box-shadow: 2vmin 0 0.41638048695009966vmin currentColor;
}
.background span:nth-child(7) {
    color: #ff0000;
    top: 96%;
    left: 3%;
    animation-duration: 264s;
    animation-delay: -229s;
    transform-origin: -15vw 9vh;
    box-shadow: 2vmin 0 0.40502498892571603vmin currentColor;
}
.background span:nth-child(8) {
    color: #ff0000;
    top: 76%;
    left: 61%;
    animation-duration: 240s;
    animation-delay: -219s;
    transform-origin: 20vw -19vh;
    box-shadow: 2vmin 0 1.0156718160587421vmin currentColor;
}
.background span:nth-child(9) {
    color: #ff0000;
    top: 5%;
    left: 51%;
    animation-duration: 144s;
    animation-delay: -42s;
    transform-origin: -2vw 16vh;
    box-shadow: -2vmin 0 0.307267826699656vmin currentColor;
}
.background span:nth-child(10) {
    color: #ff5252;
    top: 36%;
    left: 92%;
    animation-duration: 231s;
    animation-delay: -37s;
    transform-origin: -22vw -12vh;
    box-shadow: -2vmin 0 0.2921498605644448vmin currentColor;
}
.background span:nth-child(11) {
    color: #ff0000;
    top: 95%;
    left: 55%;
    animation-duration: 245s;
    animation-delay: -10s;
    transform-origin: 8vw 7vh;
    box-shadow: 2vmin 0 1.0671012061222331vmin currentColor;
}
.background span:nth-child(12) {
    color: #ff0000;
    top: 56%;
    left: 92%;
    animation-duration: 184s;
    animation-delay: -181s;
    transform-origin: 15vw 17vh;
    box-shadow: 2vmin 0 0.5918235410557515vmin currentColor;
}
.background span:nth-child(13) {
    color: #ff0000;
    top: 33%;
    left: 28%;
    animation-duration: 114s;
    animation-delay: -221s;
    transform-origin: 9vw 9vh;
    box-shadow: -2vmin 0 1.1762192169153356vmin currentColor;
}
.background span:nth-child(14) {
    color: #ff5252;
    top: 89%;
    left: 20%;
    animation-duration: 170s;
    animation-delay: -235s;
    transform-origin: 17vw -4vh;
    box-shadow: 2vmin 0 0.8238373991868211vmin currentColor;
}
.background span:nth-child(15) {
    color: #ff0000;top: 13%;
    left: 95%;
    animation-duration: 265s;
    animation-delay: -269s;
    transform-origin: 4vw -1vh;
    box-shadow: -2vmin 0 0.8488846198839199vmin currentColor;
}
.background span:nth-child(16) {
    color: #ff0000;
    top: 4%;
    left: 81%;
    animation-duration: 48s;
    animation-delay: -159s;
    transform-origin: -4vw -9vh;
    box-shadow: 2vmin 0 0.4950050578526016vmin currentColor;
}
.background span:nth-child(17) {
    color: #ff0000;
    top: 2%;
    left: 21%;
    animation-duration: 75s;
    animation-delay: -178s;
    transform-origin: 0vw 9vh;
    box-shadow: -2vmin 0 1.0848995041657075vmin currentColor;
}
.background span:nth-child(18) {
    color: #ff0000;
    top: 17%;
    left: 60%;
    animation-duration: 152s;
    animation-delay: -169s;
    transform-origin: 8vw 0vh;
    box-shadow: 2vmin 0 0.6297915497713673vmin currentColor;
}
.background span:nth-child(19) {
    color: #ff5252;
    top: 100%;
    left: 73%;
    animation-duration: 126s;
    animation-delay: -221s;
    transform-origin: -8vw -2vh;
    box-shadow: -2vmin 0 0.46398709556265083vmin currentColor;
}
.background span:nth-child(20) {
    color: #ff0000;
    top: 80%;
    left: 88%;
    animation-duration: 200s;
    animation-delay: -113s;
    transform-origin: 0vw 3vh;
    box-shadow: 2vmin 0 1.1875895112455663vmin currentColor;
}
.background span:nth-child(21) {
    color: #ff0000;
    top: 81%;
    left: 28%;
    animation-duration: 38s;
    animation-delay: -68s;
    transform-origin: 15vw 13vh;
    box-shadow: 2vmin 0 0.28753531831496126vmin currentColor;
}
.background span:nth-child(22) {
    color: #ff0000;
    top: 48%;
    left: 76%;
    animation-duration: 50s;
    animation-delay: -194s;
    transform-origin: -11vw 19vh;
    box-shadow: 2vmin 0 0.42613037504163664vmin currentColor;
}
.background span:nth-child(23) {
    color: #ff0000;
    top: 10%;
    left: 64%;
    animation-duration: 100s;
    animation-delay: -195s;
    transform-origin: 23vw -13vh;
    box-shadow: 2vmin 0 0.28576215080035416vmin currentColor;
}
.background span:nth-child(24) {
    color: #ff0000;
    top: 79%;
    left: 62%;
    animation-duration: 7s;
    animation-delay: -168s;
    transform-origin: 5vw -13vh;
    box-shadow: 2vmin 0 0.7463722371035203vmin currentColor;
}
.background span:nth-child(25) {
    color: #ff0000;
    top: 17%;
    left: 74%;
    animation-duration: 51s;
    animation-delay: -172s;
    transform-origin: -17vw -7vh;
    box-shadow: 2vmin 0 1.2401224652683664vmin currentColor;
}
.background span:nth-child(26) {
    color: #ff0000;
    top: 38%;
    left: 42%;
    animation-duration: 20s;
    animation-delay: -163s;
    transform-origin: -24vw -5vh;
    box-shadow: -2vmin 0 1.2157584022387904vmin currentColor;
}
.background span:nth-child(27) {
    color: #ff0000;
    top: 99%;
    left: 94%;
    animation-duration: 247s;
    animation-delay: -169s;
    transform-origin: -5vw 14vh;
    box-shadow: -2vmin 0 0.27350007032799173vmin currentColor;
}
.background span:nth-child(28) {
    color: #ff0000;
    top: 57%;
    left: 93%;
    animation-duration: 150s;
    animation-delay: -235s;
    transform-origin: 25vw -16vh;
    box-shadow: 2vmin 0 0.6700206691585703vmin currentColor;
}
.background span:nth-child(29) {
    color: #ff5252;
    top: 61%;
    left: 54%;
    animation-duration: 258s;
    animation-delay: -151s;
    transform-origin: -24vw 14vh;
    box-shadow: -2vmin 0 0.3759716848845992vmin currentColor;
}
.background span:nth-child(30) {
    color: #ff5252;
    top: 13%;
    left: 44%;
    animation-duration: 137s;
    animation-delay: -109s;
    transform-origin: 0vw -2vh;
    box-shadow: -2vmin 0 0.6809100547850466vmin currentColor;
}
.background span:nth-child(31) {
    color: #ff0000;
    top: 76%;
    left: 49%;
    animation-duration: 106s;
    animation-delay: -78s;
    transform-origin: 11vw -20vh;
    box-shadow: -2vmin 0 0.5066829780198352vmin currentColor;
}
.background span:nth-child(32) {
    color: #ff0000;
    top: 47%;
    left: 36%;
    animation-duration: 271s;
    animation-delay: -59s;transform-origin: -20vw -6vh;
    box-shadow: 2vmin 0 0.7792977389092866vmin currentColor;
}
.background span:nth-child(33) {
    color: #ff5252;
    top: 69%;
    left: 34%;
    animation-duration: 137s;
    animation-delay: -81s;
    transform-origin: 1vw -16vh;
    box-shadow: 2vmin 0 1.2242008811121734vmin currentColor;
}
.background span:nth-child(34) {
    color: #ff0000;
    top: 69%;
    left: 15%;
    animation-duration: 14s;
    animation-delay: -214s;
    transform-origin: -23vw 2vh;
    box-shadow: -2vmin 0 0.2759701589646596vmin currentColor;
}
.background span:nth-child(35) {
    color: #ff0000;
    top: 100%;
    left: 84%;
    animation-duration: 246s;
    animation-delay: -208s;
    transform-origin: 7vw 7vh;
    box-shadow: -2vmin 0 1.1541954657691254vmin currentColor;
}
.background span:nth-child(36) {
    color: #ff5252;
    top: 79%;
    left: 76%;
    animation-duration: 133s;
    animation-delay: -259s;
    transform-origin: 4vw -3vh;
    box-shadow: -2vmin 0 0.8132222541333789vmin currentColor;
}
.background span:nth-child(37) {
    color: #ff0000;
    top: 83%;
    left: 96%;
    animation-duration: 135s;
    animation-delay: -123s;
    transform-origin: 9vw -15vh;
    box-shadow: -2vmin 0 0.6675868742976022vmin currentColor;
}
.background span:nth-child(38) {
    color: #ff5252;
    top: 90%;
    left: 38%;
    animation-duration: 76s;
    animation-delay: -40s;
    transform-origin: -13vw 5vh;
    box-shadow: 2vmin 0 0.8979950444147243vmin currentColor;
}
.background span:nth-child(39) {
    color: #ff0000;
    top: 43%;
    left: 40%;
    animation-duration: 134s;
    animation-delay: -62s;
    transform-origin: 16vw -20vh;
    box-shadow: 2vmin 0 1.0307315015811835vmin currentColor;
}
.background span:nth-child(40) {
    color: #ff0000;
    top: 49%;
    left: 93%;
    animation-duration: 77s;
    animation-delay: -196s;
    transform-origin: 8vw -9vh;
    box-shadow: 2vmin 0 1.1968100484516622vmin currentColor;
}
.background span:nth-child(41) {
    color: #ff5252;
    top: 17%;
    left: 20%;
    animation-duration: 69s;
    animation-delay: -219s;
    transform-origin: -4vw 22vh;
    box-shadow: 2vmin 0 0.662698493281432vmin currentColor;
}
.background span:nth-child(42) {
    color: #ff5252;
    top: 66%;
    left: 30%;
    animation-duration: 238s;
    animation-delay: -57s;
    transform-origin: -3vw 10vh;
    box-shadow: 2vmin 0 1.1641338568912563vmin currentColor;
}
.background span:nth-child(43) {
    color: #ff0000;
    top: 96%;
    left: 66%;
    animation-duration: 122s;
    animation-delay: -66s;
    transform-origin: -22vw 23vh;
    box-shadow: -2vmin 0 0.7422063989631866vmin currentColor;
}
.background span:nth-child(44) {
    color: #ff0000;
    top: 100%;
    left: 48%;
    animation-duration: 224s;
    animation-delay: -88s;
    transform-origin: -5vw 6vh;
    box-shadow: 2vmin 0 0.26393380339588013vmin currentColor;
}
.background span:nth-child(45) {
    color: #ff0000;
    top: 9%;
    left: 29%;
    animation-duration: 272s;
    animation-delay: -86s;
    transform-origin: 2vw 7vh;
    box-shadow: 2vmin 0 0.5322637181230044vmin currentColor;
}
.background span:nth-child(46) {
    color: #ff5252;
    top: 49%;
    left: 8%;
    animation-duration: 145s;
    animation-delay: -198s;
    transform-origin: -8vw 0vh;
    box-shadow: 2vmin 0 0.5608677751989177vmin currentColor;
}
.background span:nth-child(47) {
    color: #ff0000;
    top: 72%;
    left: 95%;
    animation-duration: 183s;
    animation-delay: -108s;
    transform-origin: 9vw -5vh;
    box-shadow: -2vmin 0 0.5097535456931537vmin currentColor;
}
.background span:nth-child(48) {
    color: #ff5252;
    top: 18%;
    left: 51%;
    animation-duration: 111s;
    animation-delay: -230s;
    transform-origin: -6vw 18vh;
    box-shadow: -2vmin 0 0.44182154865671686vmin currentColor;
}
.background span:nth-child(49) {
    color: #ff0000;
    top: 1%;
    left: 16%;
    animation-duration: 138s;
    animation-delay: -114s;
    transform-origin: -20vw -20vh;
    box-shadow: -2vmin 0 0.741046726351283vmin currentColor;}


h3{

    color: #e22a2a;
}