* {
    font-family: ABC Ginto Normal Trial !important;
}

main {}

.animatein img {
    animation: fade linear both;
    animation-timeline: view();
    animation-range: entry 50% cover 50%;
    border-radius: 1.5rem;
}


@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(5rem);
        rotate: 5;
    }

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

}