*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body { padding-top: 56px;
    background: linear-gradient(45deg, #9fd1ff, #fffde4);
    background-size: 400% 400%;
    width: 100%;
    height: 100%;
    animation: color 5s ease-in-out infinite;
    justify-content: center;

}
@keyframes color{
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0 50%;
    }
}
/*.centerball{
    margin-left: 50%;
    position: absolute;
    justify-content: center;
    display: inline-flex;
    flex-direction: row;
}*/
/*.absolute{
    position: absolute;
    top: 50px !important;
    inset: 0;
    display: inline-flex;
    flex-direction: row;
}*/
/*.justify-center{
    justify-content: center;
}
.bg-shape1{
    width: 400px;
    height: 400px;
    border-radius: 9999px;
    position: relative;
    animation: one 10s infinite;
}
.bg-shape2{
    width: 300px;
    height: 300px;
    border-radius: 9999px;
    position: relative;
    animation: two 10s infinite;
}*/
@keyframes one{
    0%{
        left: 0px; top: 0px;
    }
    25%{
        left: -100px; top: 70px;
    }
    50%{
        left: 20px; top: 150px;
    }
    75%{
        left: 50px; top: 100px;
    }
    100%{
        left: 0px; top: 0px;
    }
}
@keyframes two{
    0%{
        left: 0px; top: 0px;
    }
    25%{
        left: 50px; top: 10px;
    }
    50%{
        left: 100px; top: 50px;
    }
    75%{
        left: 50px; top: 100px;
    }
    100%{
        left: 0px; top: 0px;
    }
}
.opacity-50{
    opacity: .5;
}
.bg-blur{
    filter: blur(90px);
}
.bg-primary{
    background-color: rgb(30, 0, 225);
}
.bg-teal{
    background-color: rgb(225, 72, 173);
}
.bg-purple{
    background-color: rgb(140, 0, 215);
}


.left-aligned { margin-left: auto; }
.bg-dark { 
    background-color: #2d1e85; 
    opacity: 0.8;
    /*backdrop-filter: blur(5px);
    transition: visibility 0s, 0.6s, opacity 0.6s linear, transform 1s;*/
}




/* CALLOUT */
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
.bd-callout h4 { margin-bottom:.25rem }
.bd-callout p:last-child { margin-bottom:0 }
.bd-callout code { border-radius:.25rem }
.bd-callout+.bd-callout { margin-top:-.25rem }
.bd-callout-info { border-left-color:#5bc0de }
.bd-callout-warning { border-left-color:#f0ad4e }
.bd-callout-danger { border-left-color:#d9534f }

/* footer */
footer a { color: white; font-weight: bold; text-decoration: none; }
footer a:hover { color: white; text-decoration: underline; }
.footer{
    background: transparent;

}




