body {
    background-color: #f5f5f5;
}
body.splash {
    background-image: url('../img/adi-goldstein-Hli3R6LKibo-unsplash.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
.holder {
    background-color: #f5f5f5;
    margin: 1rem 0rem 1rem 0rem;
    border-radius: 0.4rem;
    padding: 0.5rem;
    opacity: 80%;
}
h1 {
    font-family: 'Permanent Marker', cursive;
}
h1.birthday {
    text-align: center;
}
h1.lg100 {
    font-size: 100px;
}
h1.lg90 {
    font-size: 85px;
}
h1.lg120 {
    font-size: 120px;
}
.btn.next {
    margin-top: 0.3rem;
    font-size: 40px;
    font-family: 'Permanent Marker', cursive;
    background-color: #33A;
    color: #000;
    border-color: #000;
    border-width:medium;
    border-radius: 0.4rem;
    opacity: 90%;
    background-color: #3333aa;
    background-image: url("https://www.transparenttextures.com/patterns/classy-fabric.png");
    /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

/* Enter and leave animations can use different */
/* durations and timing functions.              */
.slide-fade-enter-active {
    transition: all 0.3s ease-out;
}

.slide-fade-leave-active {
    transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-enter-from,
.slide-fade-leave-to {
    transform: translateX(20px);
    opacity: 0;
}