
/* body {
    margin: 0;
    padding: 0;
    background-color: #263238;
} */

/* h1 {
    font-size: 5rem;
    text-align: center;
    height: 90vh;
    line-height: 90vh;
    color: #fcedd8;
    background-color: #263238;
    font-family: "Niconne", cursive;
    font-weight: 700;
    text-shadow: 5px 5px 0 #eb452b, 10px 10px 0 #efa032, 15px 15px 0 #46b59b,
        20px 20px 0 #017e7f, 25px 25px 0 #052939, 30px 30px 0 #c11a2b;
} */

@keyframes confetti-slow {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(25px, 805vh, 0) rotateX(360deg) rotateY(180deg);
    }
}

@keyframes confetti-medium {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(100px, 255vh, 0) rotateX(100deg) rotateY(360deg);
    }
}

@keyframes confetti-fast {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(-50px, 255vh, 0) rotateX(10deg) rotateY(250deg);
    }
}
.js-container .confetti-container {
    perspective: 700px;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
}

.js-container-mobile .confetti-container {
    perspective: 700px;
    position: absolute;
    overflow: hidden;
    top: 5%;
    right: 6%;
    bottom: 0;
    left: 6%;
}

.confetti {
    position: absolute;
    z-index: 1;
    top: -10px;
    border-radius: 0;
}
.confetti--animation-slow {
    /* animation: confetti-slow 2.25s linear 1 forwards; */
    animation: confetti-slow 15.25s linear 1 forwards;

}
.confetti--animation-medium {
    /* animation: confetti-medium 1.75s linear 1 forwards; */
    animation: confetti-medium 14.75s linear 1 forwards;

}
.confetti--animation-fast {
    /* animation: confetti-fast 1.25s linear 1 forwards; */
    animation: confetti-fast 12.25s linear 1 forwards;

}