/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

img {
    max-width: 100%;
    height: auto;
}

/* PINNNNN BOTTOM FOOTER */
body {
    display: flex;
    flex-direction: column;
}