.container {
    animation: zoomIn 0.75s;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.top-right-links {
    animation: fadeInLeft 0.75s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
