.my-projects-container {
    width: 80%;
    margin: 30px auto;
    padding: 0 15px;
}

.my-projects-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
}

.my-projects-card > img {
    width: 80%;
}

.my-projects-card > p {
    text-align: center;
    font-size: var(--my-h4-text-size);
    font-weight: bold;
    color: var(--my-secondary-color2);
    transform: translateY(10px);
}

.my-projects-header-title {
    font-size: var(--my-h2-text-size);
    color: var(--my-secondary-color2);
    font-weight: bold;
}

.projects-header-images {
    display: flex;
    align-items: center;
    gap: 5px;
}

.projects-header-images > img {
    width: 70px;
    animation: projects_images 3s infinite alternate-reverse;
}

@keyframes projects_images {
    0% {
        transform: scale(1) rotate(0);
    }
    10% {
        transform: scale(0.8) rotate(0);
    }
    20% {
        transform: scale(0.8) rotate(5deg);
    }
    30% {
        transform: scale(0.8) rotate(-5deg);
    }
    40% {
        transform: scale(0.8) rotate(5deg);
    }
    50% {
        transform: scale(0.8) rotate(-5deg);
    }
    60% {
        transform: scale(0.8) rotate(0);
    }
    70% {
        transform: scale(1) rotate(0);
    }
    80% {
        transform: scale(0.8) rotate(0);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}
