/********** Footer **********/
footer {
    background: var(--deep-blue);
    height: 200px;
    color: white;
    padding: 1rem;
    padding-bottom: 2rem;
    height: 100%;
    margin: 0;
}
footer menu {
    display: grid;
    grid-template-columns: 1fr 4fr 4fr 1fr;
    grid-template-rows: 1fr 5fr 1fr;
    padding: 0;
    margin: 0;
    justify-items: center;
}

footer menu li {
    list-style-type: none;
    width: fit-content;
}

footer menu ul {
    padding-left: 0;
}

footer menu h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

#links {
    grid-column: 2;
    grid-row: 2;
}

#connect-with-us {
    grid-column: 3;
    grid-row: 2;
}

.built-by {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

#footer-social {
    display: flex;
}
#footer-social li {
    margin-right: 12px;
}
.btn-primary {
    background-image: linear-gradient(90deg, #d9358f 0%, #c13a84 100%);
  -webkit-background-size: 200% 200%;
  background-size: 200%;
  background-position: 0 200%;
  border-color: #C13A84;
}

.floating {
    animation: 1.5s cubic-bezier(0.37, 0, 0.63, 1) infinite alternate floating;
}

@keyframes floating {
    0% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(5px);
    }
}

button.b1 {
    background-color: transparent;
    /*background-color: var(--deep-blue);*/
    padding: 0.5rem;
    margin-left: 0.25rem;
    border-radius: 5px;
    border: none;
    outline: 2px #58E1FF solid;
    font-weight: 700;
    line-height: 1.25rem;
    cursor: pointer;
    /* color: white; */
    color: black;
}

.aura-outer {
    animation: 4s ease-in-out infinite alternate aura_glow;

}
.aura-inner {
    box-shadow:
        inset 10px 5px 20px rgb(231, 255, 123),  /* left lime bc idk baja gives lime vibes */
        inset -10px -5px 20px #0ff; /* right cyan */
    background: transparent; 
    text-shadow: 0 0 50px #FFF, 0 0 50px #FFF, 0 0 15px #FFF, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 0px #fff, 0 0 100px #fff;

    z-index: 10;
    position: relative;
    border: solid black 1px;
    width: fit-content;
    padding: 2px;
    border-radius: 3px;
}


@keyframes aura_glow {
    0% {
        box-shadow:
        inset 10px 5px 30px rgb(231, 255, 123),  /* left lime */
        inset -10px -5px 30px #0ff, /*right cyan*/
        0 0 10px 2px rgb(0, 255, 200); /*out baja blast green*/
    }
    50% {
        box-shadow:
        /* 0 0 6px 30px #fff,  inner white */
        /* 0 0 100px 60px #f0f, middle magenta */
        inset 10px 5px 30px rgb(0, 255, 200),  /* left baja blast green */
        inset -10px -5px 30px rgb(231, 255, 123), /*right lime*/
        0 0 10px 2px #0ff; /* outer cyan */
    }
    100% {
        box-shadow:
        inset 10px 5px 30px #0ff,  /* left cyan */
        inset -10px -5px 30px rgb(0, 255, 200), /*right baja blast gren*/
        0 0 10px 2px rgb(231, 255, 123); /*outer lime*/
    }
}