@keyframes scaleAnimation {
    0% { transform: scale(0); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.profile img,
.container h1,
.container p,
.container iframe,
.social-icons {
    animation: scaleAnimation 0.3s ease-out;
}