.portrait {
    animation-name: profilePic;
    animation-duration: 1s;
    animation-delay: 500ms;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0, 0.5, 0, 1);
}

.about {
    animation-name: slideDown;
    animation-duration: 1s;
    animation-delay: 700ms;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0, 0.5, 0, 1);
}

@keyframes profilePic {
    from {
        opacity: 0;
        transform: scale(1.2) translateY(-1rem);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-1rem);
    }

    to {
        opacity: 1;
        transform: none;
    }
}