@media only screen and (max-width: 767px) {
    .headings1 {
        color: white;
        font-family: Tourney-bold;
        font-size: 60px;
        text-shadow: 0 0 15px rgb(255, 0, 153);
    }

    .headings2 {
        color: white;
        font-family: Tourney-thin;
        font-size: 50px;
        text-shadow: 0 0 15px rgb(30, 144, 255);
        line-height: 1.5;
    }

    .headings3 {
        text-align: center;
        text-decoration: underline;
        color: white;
        font-family: Tourney-bold;
        font-size: 20px;
        text-shadow: 0 0 15px rgb(30, 144, 255);
        line-height: 1.5;
    }



    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-30px);
        }

        60% {
            transform: translateY(-15px);
        }
    }

    header {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100vw;
        height: 80px;
        background-color: rgba(0, 0, 0, 0.71);
        margin-bottom: 1rem;
        position: sticky;
        top: 0;
    }

    .logo-container {
        width: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }



    .logo-container img {
        width: auto;
        height: 70%;
        object-fit: scale-down;
    }

    nav {
        display: flex;
        align-items: center;
        width: 70vw;
    }

    nav ul li {
        list-style-type: none;
        font-family: Anta;
        font-size: 15px;
        text-shadow: 0 0 15px rgb(255, 0, 153);
        position: relative;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
        padding: 10px 15px;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #00FF85;
        transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

    nav ul li a:hover {
        color: #00FF85;
        text-shadow: 0 0 15px rgb(0, 255, 133);
    }

    li {
        list-style-type: none;
        font-family: Anta;
        font-size: 15px;
        text-shadow: 0 0 15px rgb(255, 0, 153);
    }

    ul {
        display: flex;
        flex-direction: row;
        font-size: large;
        gap: 20px;
        padding: 0;
    }

    .section-title {
        font-family: Anta;
        font-size: 2rem;
        text-shadow: 0 0 15px rgb(30, 144, 255);
        text-decoration: underline;
        margin-left: 1rem;
    }

    section {
        border-radius: 15px;
        border: 2px rgba(255, 0, 153, 0.663) dashed;
        background-color: rgba(128, 128, 128, 0.24);
        margin: 10px;
        padding: 10px;
    }

    #skills {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin: auto;
        gap: 10px;
        margin: 10px;
        padding: 10px;
    }

    #skills section p {
        text-align: justify;
        font-family: Anta;
        font-size: 15px;
    }

    .info-container {
        display: flex;
        justify-content: flex-start;
        justify-content: space-between;
        height: 160px;
        width: auto;
    }

    .img-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    .img-container a {
        font-family: Anta;
        color: #1E90FF;
        margin-top: 5px;
        font-size: 15px;
    }

    .img-container a:hover {
        color: #ff0099;
        text-decoration: underline;
        text-shadow: 0 0 15px rgb(255, 0, 153);
    }

    .info-container img {
        border: 2px rgba(255, 255, 255, 0.71) solid;
        border-radius: 50%;
        width: auto;
        height: 80%;
        object-fit: scale-down;
    }

    .info {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        text-align: left;
        width: 100%;
    }

    .info h2 {
        margin: 0;
        text-align: center;
        font-size: 28px;
        font-family: Alloy;
    }

    .info h3 {
        margin: 0;
        margin-left: 10px;
        text-align: left;
        font-size: 13px;
        font-family: Alloy;
    }

    #about p {
        margin-top: 10px;
    }



    .logo-holder {
        margin: auto;
        align-items: center;
        width: 70px;
        height: 70px;
        border-radius: 15px;
        cursor: pointer;
    }

    .logo-holder:hover {
        background-color: #00FF85;
    }

    .logo-holder img {
        width: auto;
        height: 100%;
        object-fit: contain;
    }

    /* Section projet */
    #projects {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .project-img-container {
        width: 80%;
    }

    .project-img-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 15px;
    }

    .caroussel {
        display: flex;
    }

    .swiper {
        width: 10%;
        margin: auto
    }

    footer {
        margin-top: 30px;
    }
}