@media screen and (min-width: 767px) {

    /* Body and General Styles */
    body {
        font-size: 18px;
    }

    /* Header Styles */
    header {
        position: sticky;
        top: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        height: 80px;
    }

    .logo-container {
        width: 70px;

    }

    .logo-container img {
        height: 60px;
        width: auto;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        gap: 50px;
        padding: 0;
        margin: 0;
    }

    nav ul li {
        list-style-type: none;
        font-family: Anta;
        font-size: 24px;
        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);
    }



    .headings1 {
        color: white;
        font-family: Tourney-bold;
        font-size: 80px;
        text-shadow: 0 0 15px rgb(255, 0, 153);
        margin: 0;
    }

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


    .headings3 {
        text-align: center;
        text-decoration: underline;
        color: white;
        font-family: Tourney-bold;
        font-size: 30px;
        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);
        }
    }

    /* Section Styles */
    section {
        width: 60%;
        margin: 0 auto;
        padding: 10px;
        border-radius: 15px;
        border: 2px rgba(255, 0, 153, 0.663) dashed;
        background-color: rgba(128, 128, 128, 0.24);
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section-title {
        font-family: Anta;
        font-size: 3rem;
        text-shadow: 0 0 15px rgb(30, 144, 255);
        text-decoration: underline;
        margin-bottom: 30px;
        text-align: center;
        margin-top: 150px;
    }

    #contact {
        padding: 20px;
        margin-bottom: 50px;
    }

    /* About Section Styles */
    #about {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .info-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin-bottom: 50px;
    }

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

    .img-container img {
        border: 2px rgba(255, 255, 255, 0.71) solid;
        border-radius: 50%;
        width: 200px;
        height: 200px;
        object-fit: cover;
    }

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

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

    .info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        width: 60%;
    }

    .info h2 {
        margin: 0;
        font-size: 50px;
        text-shadow: 0 0 15px rgb(255, 0, 153);
        font-family: Alloy;
        margin-bottom: 20px;
    }

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

    #about p {
        text-align: center;
        max-width: 800px;
        margin: 10px;
        font-size: 24px;
    }

    /* Skills Section Styles */
    #skills {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        min-width: 50%;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }

    .logo-holder {
        width: 80px;
        height: 80px;
        border-radius: 15px;
        cursor: pointer;
        transition: transform 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: auto;
        background-color: #f0f0f0;
    }

    .logo-holder:hover {
        background-color: #00FF85;
        transform: scale(1.1);
    }

    .logo-holder img {
        max-width: 100%;
        /* Limite la largeur de l'image à la largeur du conteneur */
        max-height: 100%;
        /* Limite la hauteur de l'image à la hauteur du conteneur */
        object-fit: contain;
        /* Maintient le ratio d'aspect de l'image */
    }


    /* Projects Section Styles */
    #projects {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .caroussel {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

    .caroussel-container {
        display: flex;
        overflow: hidden;
        width: 100%;
        justify-content: center;
    }

    .project {
        width: 100%;
        display: none;
    }

    .project.active {
        display: block;
    }

    .project-img-container {
        width: 100%;
        margin: auto;
    }

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

    .swiper {
        width: 10%;
        cursor: pointer;
        color: #00FF85;
    }

    .swiper i {
        font-size: 60px;
    }

    .project-title {
        text-align: center;
        margin: 20px 0;
        font-size: 24px;
    }

    .project-desc {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .project-desc p {
        font-size: 18px;
        text-align: center;
        max-width: 600px;
    }

    /* Contact Section Styles */

    .contact-container {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .form-group label {
        font-family: Anta;
        color: #1E90FF;
        text-shadow: 0 0 5px rgb(30, 144, 255);
        font-size: 18px;
    }

    .form-group input,
    .form-group textarea {
        background-color: #181717;
        border: none;
        border-radius: 5px;
        padding: 15px;
        color: white;
        outline: 2px #181717 solid;
        transition: outline 0.3s ease;
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: 2px #00FF85 solid;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 200px;
    }

    .neon-button {
        align-self: center;
        margin-top: 20px;
    }
}