@keyframes rightMove {
    from {
        transform: translate(-200px, -200px);
    }
    to {
        transform: translate(0px, 0px); /* Ajustez la distance de déplacement selon vos besoins */
    }
}

@keyframes leftMove {
    from {
        transform: translateX(200px);
    }
    to {
        transform: translateX(0px);
    }
}

.contact-sub {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.contact-container {
    display: flex;
    justify-content: center;
    width: 100%;
}


.xwing {
    position: absolute;
    align-self: start;
    margin-top: 50px;
    left: 220px;
    width: 10%;
    animation: rightMove 0.5s ease-in-out;
}

.millenium {
    position: absolute;
    margin-top: 150px;
    right: 220px;
    width: 10%;
    animation: leftMove 0.5s ease-in-out;
}

@media screen and (max-width: 1140px) {
    .xwing, .millenium {
        display: none;
    }
}