* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    overflow-x: hidden;
    font-family: Poppins;
    background-color: #111215;
}

.logo {
    font-family: Orbitron,sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.navbar2 a {
    margin-left: 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.icons {
    display: none;
    position: absolute;
    top: 2%;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width:822px) {
    .icons {
        display: inline-flex;
    }

    .logo {
        z-index: 100;
        position: absolute;
        top: 2%;
        left: 5%;
        font-family: Orbitron,sans-serif;
    }

    .navbar2 {
        visibility: hidden;
        z-index: 99;
        position: absolute;
        top: 10%;
        left: 0;
        width: 100%;
        height: 18.7rem;
        opacity: 0;
        background-color: #111215;
        transition: opacity .5s ease,transform .5s ease,visibility .5s ease;
        transform: translateY(-20px);
    }

    .navbar2.active {
        visibility: visible;
        height: 45%;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar2 a {
        display: block;
        margin: 1.5rem 0;
        text-align: center;
        font-size: 1.1rem;
    }
}

.chemin {
    text-decoration: underline;
    font-size: 1.1rem;
    color: #fff;
    transition: text-shadow .1s ease-in-out;
    cursor: pointer;
}

.chemin:hover {
    text-shadow: 0 0 10px rgba(255,255,255,.7) ,0 0 15px rgba(255,255,255,.5);
}

.by {
    font-size: 15px;
    color: #12c2e9;
}

.img1 {
    width: auto;
    border-radius: 13px;
}

.cont {
    font-size: 23px;
    font-weight: 500;
    color: #fff;
}


@media (max-width:400px) {
    .img1 {
        height: 200px!important;
    }
}

.text-gradient {
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: linear-gradient(to right,#d946ef,#06b6d4);
    -webkit-background-clip: text;
}

.by {
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    font-weight: 600;
    color: transparent;
    background: linear-gradient(to right,#d946ef,#06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
  border-radius: 15px;
}

.accent-icon {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    vertical-align: middle;
    color: transparent;
    /* Effet métal brossé léger */
    background: linear-gradient(to bottom, #6b7280, #111827);
    -webkit-background-clip: text;
    background-clip: text;
}

.cont {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}



strong {
    font-weight: 600;
    color: #fff;
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.03);
    border-radius: 15px;
    background: rgba(255,255,255,.01);
    transition: all .3s ease;
}

.task-item:hover {
    border-color: rgba(255,255,255,.1);
    background: rgba(255,255,255,.03);
}

.cont {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.desc {
    font-size: 1rem;

    color: #7e8086 !important; 
    font-weight: 300;
}
.desc strong {
    color: #ffffff;
    font-weight: 600;
}
strong {
    color: #fff;
}

.btn-perso {
    padding: 10px 24px;
    border: none;
    border-radius: 12px;
    font-family: Poppins,sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: #fff!important;
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    transition: all .3s ease;
    cursor: pointer;
}

.under2:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(-2px);
}

.under2 {
    text-decoration: none;
    font-size: .9rem;
    color: #94a3b8;
    transition: all .3s ease;
}