/*
    This file defines custom applicable layouts
    and styles.
*/

/* Layout */
.centeredTextElement {
    width: 100%;
    text-align: center;
}

.miniText {
    margin-top: .425rem;
    font-size: .85rem;
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(25%);
        opacity: 0%;
    }
}

.slideUpAnimation {
    animation: slideUp 0.5s ease-out forwards;
}