* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
}

h1 {
    font-family: "Poppins", sans-serif;
    scroll-margin-top: 15vh;
    font-size: 3vw;

    background-image: linear-gradient(45deg, #006bcf, #00e1ff);
    color: #00053600;
    background-clip: text;

    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(0, 132, 255, 0.445);
}

h2 {
    font-family: "Poppins", sans-serif;
    scroll-margin-top: 15vh;
    font-size: 2.4vw;

    background-image: linear-gradient(45deg, #3da1ff, #00e1ff);
    color: #00053600;
    background-clip: text;

    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(103, 219, 255, 0.445);
}

h3 {
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: normal;
    font-style: italic;
}

.texto-espacial {
    border-width: 2px;
    background-image: url("../media/images/gif/soulgif.gif");
    background-position: center;
    color: #9fe4ff77;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    font-size: 40px;
    margin-top: 0px;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    scroll-margin-top: 15vh;
}

/* Navbar */

.navbar {
    position: fixed;
    width: 100%;
    height: 65px;
    background-attachment: scroll;
    background-color: #000536;
    background-image: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.493) 0%,
            rgba(255, 255, 255, 0) 100%
        ),
        linear-gradient(
            90deg,
            rgba(210, 252, 255, 1) 0%,
            rgba(0, 137, 255, 1) 51%,
            rgba(69, 164, 252, 1) 100%
        );
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;

    -webkit-box-shadow: 0px -5px 17px 10px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px -5px 17px 10px rgba(0, 0, 0, 0.75);
    box-shadow: 0px -5px 17px 10px rgba(0, 0, 0, 0.75);

    z-index: 15;

    overflow: hidden;
}

.container {
    display: flex;
}

.navbar .container {
    height: 61px;
}

.navbar-lmj {
    padding-top: 7px;
    padding-left: 50px;
    max-width: 190px;
}

.navbar-games {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding-right: 430px;
    padding-top: 10px;
}

.navbar-games .container {
    gap: 10%;
    max-width: 250px;
}

a i {
    margin-right: 5px;
    margin-left: 5px;
}

.navbar-games a {
    height: 80%;

    margin-top: -2px;
}

.games-button {
    width: 175px;
    flex-shrink: 0;
    transition: 0.5s ease-in-out;
    right: 0;
    position: relative;
    overflow: hidden;
}

.games-button a img {
    min-width: 200px;
}

.games-button-list {
    position: absolute;
    display: flex;
    gap: 40px;
    pointer-events: none;
    padding-top: 2px;
    margin-left: 130px;
    opacity: 0;
}

.games-button-list a {
    background-color: rgba(255, 255, 255, 0);
}
.games-button-list a img {
    pointer-events: all;
    max-height: 50px;
}

.menu-button {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-size: 20px;
    vertical-align: middle;

    background-color: rgba(0, 81, 255, 0.336);
    border-radius: 20px;
    padding: 10px;

    white-space: nowrap;

    cursor: pointer;
    user-select: none;
    color: #ffffff;
    text-shadow: rgba(255, 255, 255, 0.2) 1px 2px 3px;
}

.navbar-menu {
    display: none;
}

.scrollbar {
    background-color: rgb(0, 68, 255, 0.67);

    height: 4px;

    animation: scroll-completion linear;
    animation-timeline: scroll(root);
}

.logo {
    max-width: 100;
    height: auto;
}

.title-image {
    width: 500px;
    height: auto;
}

.other-webs {
    margin-top: -30px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.other-webs img {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 300px;
    min-width: 275px;
    cursor: pointer;
}

.paragraph {
    font-family: "Poppins", sans-serif;

    text-align: center;

    background-color: rgba(255, 255, 255, 0.7);

    border-radius: 55px;
    padding-top: 30px;
    padding-left: 175px;
    padding-right: 175px;

    margin-top: 50px;

    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-size: 20px;

    animation: fade-in-paragraph linear;
    animation-timeline: view();
    animation-range-end: 30vw;
}

.contact-social-media {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-bottom: -60px;
}

.contact-social-media div {
    display: flex;
    flex-wrap: nowrap;
}

.contact-social-media a img {
    max-width: 75px;
    max-height: 75px;
    min-width: 15px;
    min-height: 15px;
    color: #fbfcff;
    padding: 15px;
    filter: invert(28%) sepia(78%) saturate(595%) hue-rotate(170deg)
        brightness(92%) contrast(86%);
}

.contact-form {
    width: 75%;
}

.contact-form form {
    margin-top: -30px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.contact-form form input {
    font-family: "Poppins", sans-serif;
    width: 80%;
    border: solid;
    margin-top: 15px;
    padding: 6px;
    padding-left: 25px;
    background-color: rgba(165, 215, 255, 0.6);
    border-color: rgb(120, 163, 255);
    font-size: large;
    border-radius: 20px;
    border-width: 1px;
}
.contact-form form ::placeholder {
    color: #265d91;
}

.contact-form form textarea {
    font-family: "Poppins", sans-serif;
    padding: 6px;
    padding-left: 25px;
    background-color: rgba(165, 215, 255, 0.6);
    border-color: rgb(120, 163, 255);
    border-width: 1px;
    width: 80%;
    min-height: 200px;
    resize: none;
    margin-top: 30px;
    font-size: large;
    border-radius: 20px;
}

.contact-form .captcha {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.contact-form .captcha .send-button {
    background-color: rgba(43, 110, 255, 0.719);
    border-radius: 20px;
    padding: 10px;

    white-space: nowrap;

    cursor: pointer;
    user-select: none;
    color: #ffffff;
    text-shadow: rgba(255, 255, 255, 0.2) 1px 2px 3px;
    margin-top: -10px;
    margin-left: 40px;
    font-size: 25px;
    padding-left: 20px;
    padding-right: 20px;
}

.paragraph ul {
    margin-right: -125px;
    margin-left: -125px;

    width: 100%;

    font-size: 18px;
    display: flex;
    justify-content: space-evenly;
    overflow: visible;
    flex-wrap: wrap;
    gap: 3%;
    text-align: center;
    margin-bottom: 20px;
}

@font-face {
    font-family: "PathogenFont";
    src: url("../media/fonts/impactreg.woff");
}

@font-face {
    font-family: "BallenitaFont";
    src: url("../media/fonts/SuperWater-PVoOm.ttf");
}

.pathogen-header {
    font-family: "PathogenFont";
    font-size: 50px;
    color: black;
    margin: 0px;
    padding: 0px;
    align-self: center;

    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 81, 0, 0.918);
    text-shadow: rgb(255, 60, 0) 0px 0px 7px;
}

.paragraph li {
    display: flex;
    flex-direction: column;
    max-width: 250px;
    margin-top: 15px;
}

.mask {
    max-width: 1000px;
    max-height: 520px;
    align-self: center;
    border: solid #33190053;
    border-width: 7px;
    border-radius: 40px;
    overflow: hidden;
    margin-top: 35px;
}

.pathogen-paragraph img {
    vertical-align: top;
}

.ballenita-paragraph img {
    vertical-align: top;
}

.paragraph li .mask {
    width: 250px;
    height: 250px;

    align-self: center;
    border: solid #33190053;
    border-width: 7px;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 25px;
}

.paragraph li img {
    margin-top: 70px;
    transform: scale(2.25);
}

.resize-animation-stopper * {
    animation: none !important;
    transition: none !important;
}

.main-text {
    padding: 8vw;
    padding-top: 0px;
    padding-bottom: 40px;
}

.yt-video {
    height: auto;
    width: 50%;
}

.steam-buy {
    width: 75%;
    margin-top: 20px;
    margin-bottom: 50px;
}

.video-mask {
    padding: 50px;
    width: 100%;
    max-width: 900px;
}

.video-mask div {
    border-width: 10px;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-mask div iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.hoverable {
    transition: 0.3s;
}

.hoverable:hover {
    transform: scale(1.1);
}

hr {
    border: 0;
    clear: both;
    width: 100%;
    background-color: #006bcf;
    height: 3px;
}

.lmj-games-trademark {
    margin-top: 50px;
    padding-bottom: 16px;
    color: #4d4d4d;
}

.ballenita-paragraph h1 {
    margin-top: 50px;
    background-image: linear-gradient(45deg, #ffffff, #00a2ff);
    color: #00053600;
    background-clip: text;
    background-image: url(/media/images/gif/bubbles.gif);
    background-position: -150px;
    font-size: 60px;
    font-weight: bold;
    -webkit-text-stroke-color: rgb(0, 105, 131);
    -webkit-text-stroke-width: 0.5px;
}

.ballenita-characters {
    margin-left: 150px;
    margin-right: 150px;
    justify-content: center;
    display: flex;
    gap: 25%;
}
.ballenita-characters img {
    max-height: 250px;
    margin-bottom: 40px;
}

.image-browser {
    position: fixed;
    aspect-ratio: 16 / 9;
    background-color: #ffffff;

    top: 50%;
    left: 50%;

    width: 70%;

    box-shadow: 0px -5px 17px 10px rgba(0, 0, 0, 0.5);

    border-radius: 5px;
    z-index: 15;
    overflow: visible;
    transform: scale(0);
}

.image-browser.fade-in {
    animation: fade-in 0.25s linear;
    opacity: 1;
}

.image-browser.fade-out {
    animation: fade-out 0.25s linear;
    opacity: 0;
}

.image-browser.enabled {
    transform: scale(1);
    transform: translate(-50%, -47%);
}

.image-browser img {
    transform: scale(0.985, 0.98);
    margin-bottom: -10px;
}

.close-img-browser {
    position: absolute;
    top: 0%;
    left: 100%;
    width: 46px;
    height: 46px;
    margin-left: -40px;
    margin-top: -6px;
    background-color: #005688;
    padding-bottom: 0px;
    border-style: solid;
    border-width: 3px;
    border-color: #49a7ff;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 30px;

    cursor: pointer;
}

.close-img-browser a {
    color: white;
}

.zoomable {
    cursor: pointer;
}

.team-paragraph .bio-container {
    display: flex;
    align-items: center;
    gap: 4vw;
    margin-left: 40px;
    margin-right: 40px;
}

.team-paragraph h1 {
    margin-bottom: -60px;
    padding-bottom: 0px;
}

.team-paragraph div img {
    width: 100%;
    vertical-align: top;
}
.about-lmj-text {
    margin-top: -30px;
    width: 700px;
    height: 400px;
    text-align: justify;
}

.team-paragraph .mask {
    display: block;
    width: 400px;
    height: 400px;
    align-self: center;
    border: solid #3d3d3d53;
    border-width: 7px;
    border-radius: 40px;
    overflow: hidden;
    margin-top: 90px;
    margin-bottom: 100px;
    padding: 0px;
}

@keyframes scroll-completion {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@keyframes fade-in-paragraph {
    from {
        scale: 0.8 1;
        opacity: 0;
    }
    to {
        scale: 1 1;
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@media (width <= 1280px) {
    .navbar {
        position: fixed;
        width: 100%;
        height: 65px;
        background-attachment: scroll;
        background-color: #000536;
        background-image: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.493) 0%,
                rgba(255, 255, 255, 0) 100%
            ),
            linear-gradient(
                90deg,
                rgba(210, 252, 255, 1) 0%,
                rgb(151, 206, 255) 80%,
                rgba(69, 164, 252, 1) 100%
            );
        background-position: top center;
        background-repeat: no-repeat;
        background-size: 100% auto;

        -webkit-box-shadow: 0px -5px 17px 10px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 0px -5px 17px 10px rgba(0, 0, 0, 0.75);
        box-shadow: 0px -5px 17px 10px rgba(0, 0, 0, 0.75);

        z-index: 15;

        overflow: hidden;
    }

    .navbar-lmj {
        padding-top: 10px;
        padding-left: 10px;
        max-width: 140px;
    }

    h1 {
        font-size: 34px;
        scroll-margin-top: 15vh;

        margin-top: -18px;

        background-image: linear-gradient(45deg, #006bcf, #00e1ff);
        color: #00053600;
        background-clip: text;

        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: rgba(0, 57, 110, 0.8);
    }
    h3 {
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .video-mask {
        padding: 0px;
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%;
        max-width: 900px;
    }

    .paragraph li .mask {
        width: 200px;
        height: 200px;

        align-self: center;
        border: solid #33190053;
        border-width: 3px;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 25px;
    }
    .paragraph li img {
        margin-top: 60px;
        transform: scale(2.25);
    }

    .mask {
        border-width: 2px;
        border-radius: 16px;
    }

    .pathogen-paragraph ul {
        width: 100%;

        font-size: 18px;
        display: flex;
        justify-content: space-evenly;
        overflow: visible;
        flex-wrap: wrap;
        text-align: center;
        margin-bottom: 20px;
    }

    .pathogen-paragraph ul li {
        transform: scale(0.65);
        margin: -60px;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: -60px;
        margin-bottom: -80px;
    }

    .title-image {
        width: 275px;
        height: auto;
    }

    .main-text {
        padding-left: 10px;
        padding-right: 10px;
        gap: 0px;
    }

    .pathogen-header {
        font-size: 8vw;
        padding-top: 20px;
        padding-bottom: 20px;
        -webkit-text-stroke-width: 0px;
    }

    .paragraph {
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 20px;
        gap: 3%;
        font-size: 16px;
    }

    .main-text .paragraph {
        margin-top: 40px;
    }

    .main-text .paragraph:first-child {
        margin-top: 80px;
    }

    .navbar-button {
        display: none;
    }

    .navbar-games {
        padding-right: 15px;
    }

    .navbar-games a {
        background-color: rgba(0, 81, 255, 0.336);
    }

    .navbar-menu {
        display: block;
    }

    .dropdown-menu .menu-button {
        background-color: rgba(0, 132, 255, 0.438);
    }

    .navbar {
        margin-top: -80px;
    }

    .dropdown-menu {
        width: 170px;
        height: 220px;
        margin-left: calc(100vw - 170px);

        background-image: linear-gradient(
            rgba(54, 118, 255, 0.95) 0%,
            rgba(43, 54, 107, 0.95) 100%
        );
        z-index: 10;
        padding: 15px;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        position: fixed;

        display: flex;
        gap: 7%;
        align-items: left;
        justify-content: center;
        flex-direction: column;

        margin-top: -245px;
        transition: 0.5s;
    }
    .dropdown-menu .menu-button {
        margin-left: -4px;
        font-size: 16px;
        max-height: 40px;
        max-width: 200px;
        border-radius: 16px;
    }
    .dropdown-menu.active {
        margin-top: -15px;
        transition: 0.5s;
    }

    .steam-buy {
        width: 100%;
        transform: scale(0.9);
        margin-top: -10px;
        margin-bottom: 20px;
    }

    .lmj-games-logo {
        margin-bottom: 30px;
        padding: 10px;
    }

    .other-webs .hoverable {
        margin: 10px;
    }

    .other-webs {
        display: flex;
        flex-wrap: wrap;
        padding: 0px;
        margin: 0px;
        margin-top: -50px;
        margin-bottom: 20px;
        gap: 0px;
    }

    .other-webs img {
        padding: 0px;
        margin: 0px;
        min-width: 75px;
        max-width: 125px;
    }

    .contact-social-media {
        padding-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: -15px;
    }
    .contact-social-media div {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        max-width: 100%;
    }

    .contact-social-media a img {
        max-width: 40px;
        max-height: 40px;
        min-width: 20px;
        min-height: 20px;
        padding: 5px;
    }

    .contact-form {
        width: 120%;
        margin-top: 15px;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    .contact-form form input {
        border-radius: 12px;
        padding-left: 12px;
        font-size: medium;

        background-color: rgba(191, 226, 255, 0.6);
        border-color: rgb(147, 181, 255);
    }
    .contact-form form textarea {
        border-radius: 12px;
        padding-left: 12px;
        font-size: medium;

        background-color: rgba(191, 226, 255, 0.6);
        border-color: rgb(147, 181, 255);
    }
    .contact-form form ::placeholder {
        color: #265d91;
    }

    .contact-form .captcha {
        margin: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        flex-direction: column;
        transform: scale(0.77);
    }
    .contact-form .captcha .send-button {
        margin: 0px;
        margin-top: 30px;
        margin-bottom: -30px;
        padding-top: 16px;
        width: 200px;
        height: 80px;
        font-size: 34px;
    }

    hr {
        border: 0;
        clear: both;
        margin-top: 0px;
        width: 80%;
        background-color: #006bcf9f;
        height: 2px;
    }

    .lmj-games-trademark {
        margin-top: 40px;
        color: #4d4d4d;
    }

    .ballenita-characters {
        margin-left: 125px;
        margin-right: 125px;
        justify-content: center;
        display: flex;
        gap: 0%;
    }

    .ballenita-paragraph h1 {
        font-size: 30px;
    }

    .image-browser {
        width: 90%;
    }

    .close-img-browser {
        width: 24px;
        height: 23px;
        margin-left: -22px;
        margin-top: -2px;
        border-radius: 5px;
        font-size: 15px;
        border-width: 2px;
    }

    .games-button {
        animation-fill-mode: none;
    }

    .games-button-list {
        margin: 0px;
        padding: 0px;
        width: 0px;
        height: 0px;
        animation-fill-mode: none;
    }

    .team-paragraph .bio-container {
        flex-direction: column;
    }

    .about-lmj-text {
        width: 120%;
        height: 100%;
        text-align: justify;
        margin-bottom: 20px;
    }

    .team-paragraph .mask {
        width: 250px;
        height: 250px;
        border-width: 5px;
        border-radius: 30px;
        margin-bottom: 50px;
    }
}

/* ANIMATED BACKGROUND */

@import url("https://fonts.googleapis.com/css?family=Exo:400,700");

body {
    font-family: "Exo", sans-serif;
}

.context {
    width: 100%;
    position: absolute;
    top: 50vh;
}

.context h1 {
    text-align: center;
    color: #fff;
    font-size: 50px;
}

/* ANIMATED BACKGROUND */

@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 7%,
        rgba(38, 173, 255, 1) 34%,
        rgba(0, 0, 0, 1) 91%
    );
    overflow: hidden;

    z-index: -10000000;
}

.background span {
    width: 20vmin;
    height: 20vmin;
    border-radius: 20vmin;
    backface-visibility: hidden;
    position: absolute;
    animation: move;
    animation-duration: 45;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.background span:nth-child(0) {
    color: #aceefa;
    top: 81%;
    left: 71%;
    animation-duration: 50s;
    animation-delay: -40s;
    transform-origin: -2vw -19vh;
    box-shadow: -40vmin 0 100px currentColor;
}
.background span:nth-child(1) {
    color: #ffffff;
    top: 33%;
    left: 31%;
    animation-duration: 33s;
    animation-delay: -17s;
    transform-origin: -23vw 13vh;
    box-shadow: -40vmin 0 20px currentColor;
}
.background span:nth-child(2) {
    color: #7afff4;
    top: 27%;
    left: 48%;
    animation-duration: 38s;
    animation-delay: -35s;
    transform-origin: 23vw -18vh;
    box-shadow: -40vmin 0 100px currentColor;
}
.background span:nth-child(3) {
    color: #4f6fff;
    top: 2%;
    left: 87%;
    animation-duration: 51s;
    animation-delay: -40s;
    transform-origin: -14vw 5vh;
    box-shadow: -40vmin 0 30px currentColor;
}
.background span:nth-child(4) {
    color: #583aff;
    top: 33%;
    left: 63%;
    animation-duration: 27s;
    animation-delay: -27s;
    transform-origin: -23vw 22vh;
    box-shadow: -40vmin 0 100px currentColor;
}
.background span:nth-child(5) {
    color: #41f1f1;
    top: 10%;
    left: 70%;
    animation-duration: 7s;
    animation-delay: -47s;
    transform-origin: -8vw 17vh;
    box-shadow: -40vmin 0 40px currentColor;
}
.background span:nth-child(6) {
    color: #0c89ff;
    top: 34%;
    left: 14%;
    animation-duration: 33s;
    animation-delay: -17s;
    transform-origin: 17vw 3vh;
    box-shadow: -40vmin 0 100px currentColor;
}

.background span:nth-child(7) {
    color: #1f74f3;
    top: 99%;
    left: 15%;
    animation-duration: 23s;
    animation-delay: -23s;
    transform-origin: -2vw -22vh;
    box-shadow: -40vmin 0 50px currentColor;
}
.background span:nth-child(8) {
    color: #30bff8;
    top: 60%;
    left: 38%;
    animation-duration: 45s;
    animation-delay: -22s;
    transform-origin: 4vw 20vh;
    box-shadow: -40vmin 0 100px currentColor;
}
.background span:nth-child(9) {
    color: #9cf0fff8;
    top: 71%;
    left: 28%;
    animation-duration: 23s;
    animation-delay: -14s;
    transform-origin: -13vw 15vh;
    box-shadow: -40vmin 0 40px currentColor;
}
.background span:nth-child(10) {
    color: #f7f2ff;
    top: 71%;
    left: 94%;
    animation-duration: 27s;
    animation-delay: -24s;
    transform-origin: -19vw -16vh;
    box-shadow: -40vmin 0 100px currentColor;
}
.background span:nth-child(11) {
    color: #008cff;
    top: 94%;
    left: 21%;
    animation-duration: 52s;
    animation-delay: -28s;
    transform-origin: -13vw -17vh;
    box-shadow: -40vmin 0 100px currentColor;
}
.background span:nth-child(12) {
    color: #f8f8f8;
    top: 98%;
    left: 14%;
    animation-duration: 42s;
    animation-delay: -3s;
    transform-origin: 25vw 23vh;
    box-shadow: -40vmin 0 100px currentColor;
}
.background span:nth-child(13) {
    color: #ffffff;
    top: 87%;
    left: 24%;
    animation-duration: 10s;
    animation-delay: -22s;
    transform-origin: 21vw -11vh;
    box-shadow: -40vmin 0 300px currentColor;
}
.background span:nth-child(14) {
    color: #70ffdb;
    top: 6%;
    left: 38%;
    animation-duration: 43s;
    animation-delay: -25s;
    transform-origin: 21vw 11vh;
    box-shadow: -40vmin 0 100px currentColor;
}
.background span:nth-child(15) {
    color: #00ffea;
    top: 16%;
    left: 52%;
    animation-duration: 21s;
    animation-delay: -24s;
    transform-origin: -3vw -1vh;
    box-shadow: -40vmin 0 30px currentColor;
}
.background span:nth-child(16) {
    color: #00d9ff;
    top: 20%;
    left: 10%;
    animation-duration: 27s;
    animation-delay: -45s;
    transform-origin: 2vw -21vh;
    box-shadow: -40vmin 0 100px currentColor;
}
.background span:nth-child(17) {
    color: #fffcf8;
    top: 25%;
    left: 55%;
    animation-duration: 50s;
    animation-delay: -4s;
    transform-origin: -23vw 12vh;
    box-shadow: -40vmin 0 20px currentColor;
}
.background span:nth-child(18) {
    color: #e7faff;
    top: 34%;
    left: 4%;
    animation-duration: 33s;
    animation-delay: -29s;
    transform-origin: -4vw -21vh;
    box-shadow: -40vmin 0 100px currentColor;
}

/* Fonts 

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}
*/
