@import url("https://fonts.googleapis.com/css?family=Exo+2:900");
body {
    background-color: rgb(31,44,86);
    font-family: 'Montserrat', sans-serif;
}
h1 {
    color: white;
    text-shadow: 0px 4px 48px rgba(255, 255, 255, 0.2);
    margin-top: -60px!important;
    margin-bottom: 20px;
    font-weight: 900;
}

.fire-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 15rem;
    transform: translateX(-50%);
    opacity: 0.75;
}

.fire {
    width: 100%;
    height: auto;
}

.fire circle {
    stroke: #ffeba2;
    fill: #ffeba2;
}

.fire>g>g:nth-of-type(3n) circle {
    stroke: #ffeba2;
    fill: #ffeba2;
}

.fire>g>g:nth-of-type(4n) circle {
    stroke: #ffeba2;
    fill: #ffeba2;
}

.fire-large {
    overflow: visible;
}

.fire-large>g {
    transform: translateY(2048px);
    opacity: 0;
    will-change: transform, opacity;
}

.fire-large g:nth-of-type(1) {
    animation: up 6.5s infinite;
}

.fire-large g:nth-of-type(1) g {
    transform: translateX(350px);
}

.fire-large g:nth-of-type(1) circle {
    animation: wobble 3s infinite ease-in-out;
}

.fire-large g:nth-of-type(2) {
    animation: up 5.25s 250ms infinite;
}

.fire-large g:nth-of-type(2) g {
    transform: translateX(450px);
}

.fire-large g:nth-of-type(2) circle {
    animation: wobble 3s infinite ease-in-out;
}

.fire-large g:nth-of-type(3) {
    animation: up 6s 750ms infinite;
}

.fire-large g:nth-of-type(3) g {
    transform: translateX(700px);
}

.fire-large g:nth-of-type(3) circle {
    animation: wobble 3s infinite ease-in-out;
}

.fire-large g:nth-of-type(4) {
    animation: up 5.5s 1.5s infinite;
}

.fire-large g:nth-of-type(4) g {
    transform: translateX(500px);
}

.fire-large g:nth-of-type(4) circle {
    animation: wobble 3s infinite ease-in-out;
}

.fire-large g:nth-of-type(5) {
    animation: up 6.5s 4s infinite;
}

.fire-large g:nth-of-type(5) g {
    transform: translateX(675px);
}

.fire-large g:nth-of-type(5) circle {
    animation: wobble 3s infinite ease-in-out;
}

.fire-small {
    overflow: visible;
}

.fire-small>g {
    transform: translateY(2048px);
    opacity: 0;
    will-change: transform, opacity;
}

.fire-small g circle {
    transform: scale(0);
}

.fire-small g:nth-of-type(1) {
    animation: up 5.25s infinite;
}

.fire-small g:nth-of-type(1) g {
    transform: translateX(350px);
}

.fire-small g:nth-of-type(1) circle {
    animation: wobble 3s infinite ease-in-out;
}

.fire-small g:nth-of-type(2) {
    animation: up 5.75s infinite;
}

.fire-small g:nth-of-type(2) g {
    transform: translateX(750px);
}

.fire-small g:nth-of-type(2) circle {
    animation: wobble 3s infinite ease-in-out;
}

.fire-small g:nth-of-type(3) {
    animation: up 5.25s 250ms infinite;
}

.fire-small g:nth-of-type(3) g {
    transform: translateX(350px);
}

.fire-small g:nth-of-type(3) circle {
    animation: wobble 3s 250ms infinite ease-in-out;
}

.fire-small g:nth-of-type(4) {
    animation: up 5.75s 325ms infinite;
}

.fire-small g:nth-of-type(4) g {
    transform: translateX(180px);
}

.fire-small g:nth-of-type(4) circle {
    animation: wobble 3s 325ms infinite ease-in-out;
}

.fire-small g:nth-of-type(5) {
    animation: up 6s 125ms infinite;
}

.fire-small g:nth-of-type(5) g {
    transform: translateX(350px);
}

.fire-small g:nth-of-type(5) circle {
    animation: wobble 3s 250ms infinite ease-in-out;
}

.fire-small g:nth-of-type(6) {
    animation: up 5.13s 250ms infinite;
}

.fire-small g:nth-of-type(6) g {
    transform: translateX(650px);
}

.fire-small g:nth-of-type(6) circle {
    animation: wobble 3s 125ms infinite ease-in-out;
}

.fire-small g:nth-of-type(7) {
    animation: up 6.25s 350ms infinite;
}

.fire-small g:nth-of-type(7) g {
    transform: translateX(480px);
}

.fire-small g:nth-of-type(7) circle {
    animation: wobble 3s 325ms infinite ease-in-out;
}

.fire-small g:nth-of-type(8) {
    animation: up 7s 200ms infinite;
}

.fire-small g:nth-of-type(8) g {
    transform: translateX(330px);
}

.fire-small g:nth-of-type(8) circle {
    animation: wobble 3s 325ms infinite ease-in-out;
}

.fire-small g:nth-of-type(9) {
    animation: up 6.25s 233ms infinite;
}

.fire-small g:nth-of-type(9) g {
    transform: translateX(230px);
}

.fire-small g:nth-of-type(9) circle {
    animation: wobble 3s 275ms infinite ease-in-out;
}

.fire-small g:nth-of-type(10) {
    animation: up 6s 900ms infinite;
}

.fire-small g:nth-of-type(10) g {
    transform: translateX(730px);
}

.fire-small g:nth-of-type(10) circle {
    animation: wobble 2s 905ms infinite ease-in-out;
}

footer {
    position: absolute;
    bottom:0;
    display: flex;
    color: #fff;
    text-align: center;
    flex-direction: column;
    margin-bottom: 15px;
}
footer a{
    margin-right: 15px;
    color: #fff;
    transition: opacity 0.4s ease-in-out;

}
footer a:hover{
    opacity: .5;
    color: #fff;
}
.vh-85 {
    height: 85vh;
}
@keyframes wobble {
    33% {
        transform: translateX(-50px);
    }
    66% {
        transform: translateX(50px);
    }
}

@keyframes up {
    0% {
        opacity: 0;
    }
    10%,
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-1024px);
    }
}

.background-fire {
    background-image: url(https://wiseagent.com/SECURE/assets/images/404Background.svg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: -1;
}
.main-content {
    margin-top: -75px;
}
@media (min-width: 576px) {
    footer {
        flex-direction: row;
    }
}

