h1 {
    display: flex;
    /*background: linear-gradient(90deg, #FF0000, #8F00FF);*/
    color: var(--color-text1);
    background-size: 400%;
    font-weight: revert;
    font-size: 3rem;
    /*-webkit-text-fill-color: transparent;
    -webkit-background-clip: text;*/
    animation: animate 5s linear infinite alternate;
}
#sec-projet{
    display: flex;
    flex-direction: row;
    padding: 7rem 6%;
    gap: 2rem;
    justify-content: center;
    height: auto;
}
.sec-ct{
    min-width: 38rem;
    width: 60rem;
}
.article{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.sec-header{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.sec-header-icon-img{
    margin-top: 10px;
}
.sec-projet-image{
    border-radius: 1rem;
    width: 100%;
    height: 30rem;
    overflow: hidden;
    object-fit: cover;
}


.aside{
    width: 20rem;
    height: auto;
    /*position: sticky;*/
    /*top: 2rem;*/
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.aside-alert, .aside-alert-finish, .aside-alert-break{
    background: rgb(254 240 138);
    border-radius: 1rem;
    width: 100%;
    height: auto;
    padding: 2rem;
}
.aside-alert-finish{
    background: #D4EDD9;
}
.aside-alert-break{
    background: #edd4dc;
}
.aside-main{
    background: var(--color-bg2);
    border-radius: 1rem;
    width: 100%;
    height: auto;
    padding: 2rem;
    display: flex
;
    gap: 1rem;
    flex-direction: column;
}
.aside-main-type, .aside-main-bt, .aside-main-cat, .aside-main-date, .aside-main-outil, .aside-main-lang{
    display: flex;
    flex-direction: row;
    gap: 0 0.5rem;
}
.aside-main-lang{
    flex-wrap: wrap;
}
.aside-main-bt{
    width: 100%;
}
.aside-main-bt button{
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    background: var(--color-bg3);
    color: var(--color-text2);
}
.aside-main-bt button:hover{
    background: var(--orange);
}


/* ----- RESPONSIVE ----- */
@media screen and (max-width: 1024px){
    #sec-projet{
        flex-direction: column;
    }
    .sec-ct{
        max-width: 100%;
    }
    .sec-projet-image{
        width: 100%;
        height: 30rem;
    }
    .aside{
        width: 100%;
    }
}
@media screen and (max-width: 600px){
    .sec-header-title H1{
        font-size: 2rem;
    }
    .sec-projet-image{
        height: 20rem;
    }
    .sec-header-icon-img{
        width: 30px;
        height: 30px;
        margin-top: 5px;
    }
}