﻿body {
    background: linear-gradient( rgba(0,0,0,0.4), rgba(0,0,0,0.4) ), url("/img/backgroud-1.jpg") center / cover no-repeat;
}

.card {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
