.about-header {
    animation: fadeInUp 1s ease-out;
}


.about-text {
    animation: fadeIn 1s ease-out;
}


.about-image {
    animation: slideInRight 1s ease-out;
}


.about-subheader {
    color: #2c3e50;
    font-size: 24px;
    margin-top: 30px;
}


.about-list {
    list-style-type: none;
    padding-left: 0;
}

.about-list li {
    margin-bottom: 10px;
}


.about-list li:hover {
    color: #3498db;
    cursor: pointer;
}


footer {
    background-color: #f8f9fa;
}


.footer-text {
    color: #6c757d;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}