body {
    background: #0a0a0a;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fade-up {
    animation: fadeUp .8s ease-out both;
}

.float-soft {
    animation: floatSoft 5s ease-in-out infinite;
}