.about-content {
    text-align: center;
    padding-top: 40px;

    animation: bottomIn 1.5s ease-in-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.about-me {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 40px;

    animation: bottomIn 1.5s ease-in-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.about-me img {
    width: 400px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 10px 20px lightsteelblue;
}

.about-me h2 {
    margin: 20px 0;
}

.about-me p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 400px;
}

/* 
* Animations Styles
*/

@keyframes bottomIn {
    from {
        transform: translateY(250px);
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}