/* changement taille des textes */  
h1 {
    font-size: 64px;
}

h2 {
    font-size: 48px;
    margin: 0px auto 30px 120px;
}

/******* Header *******/
.btn_menu_burger{
    display: none;
}

.light-bg a{
    color: var(--Noir);
}

.light-bg .btn_menu_burger div{
    background-color: var(--Noir);
}

.liens_header{
    display: flex;
    position: static;
    flex-direction: row;
    align-items: flex-start;
    background: #ffffff00;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    justify-content: none;
    padding: 0;
}

/******* Footer *******/
footer .liens {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    height: 100px;
}

footer .liens > a:first-child {
    margin: 0px 0px auto;
}

footer ul:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}


/* context du portfolio */
.titre_portfolio {
    margin: 4rem auto auto 15%;
    transform: translate(0, 0);
}

.my_name,.my_job {
    font-size: 36px;
    transform: translate(0, 0);
}

/* competances */
.skills p {
    font-weight: 800;
    font-size: 36px;
}

/* les flêches */
.big_arrow {
    display: block;
}

.small_arrow {
    display: none;
}

.hard_skill,.soft_skill {
    gap: 2%;
    flex-direction: row;
}

.hard_skill {
    margin: auto 0px 80px 0px;
}

@media (min-width: 670px) {
    .hard_skill,.soft_skill {
      gap: 20px;
    }
}

/* outils */
.noms_outils > div {
    flex-direction: row;
    gap: 5vw;
}

/* projets */
.titre_projets {
    margin-top: 10px;
}

.titre_projets::after {
    left: 120px;
    transform: rotate(90deg) translate(10%, -30%);
}

.box > div {
    gap: 25px;
    padding: 10px 20px 10px;
}

.box > div > img {
    height: 70px;
}

.info_projet h3 {
    font-size: 26px;
}

.color_projet > div {
    height: 15px;
    width: 15px;
}

/******************

**  Page Contact **

*******************/
.block_contact .liens_contact, .block_contact form {
    padding: 15px 48px;
}

.block_contact form {
    grid-template-columns: 1fr 1fr;
}

.block_contact form .mail, .block_contact form .textarea, .block_contact form button {
    grid-column: span 2;
}

/************************

**  Page projet dedier **

************************/
/* apercu du projet */
.apercu_projet{
    grid-template-columns: 50% 1fr auto;
    margin: 50px auto auto;
    width: 80vw;
    max-width: 1100px;
}

.apercu_projet>h1{
    font-size: 45px;
    grid-column: span 3;
}
  
.apercu_projet > img {
    width: 90%;
    grid-column: span 1;
    grid-area: 2 / 1 / 4 / 1;
    margin: auto 10% auto auto;
}

.color_projet > div {
    height: 15px;
    width: 15px;
}

.h2_projet{
    font-size: 36px;
    margin: 0px auto 30px 0px;
}

.apercu_projet > p{
    grid-column: span 3;
}

/* partie outils du projet */
.contenu_projet{
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: dense;
    gap: 100px 10vw;
}

.contenu_projet p:nth-of-type(even){
    grid-column: 2;
}

.contenu_projet img:nth-of-type(even) {
    grid-column: 1;
}

.contenu_projet .h2_projet{
    grid-column: span 2;
}

.outils_projet, .test_projet, .contenu_projet{
    margin: auto;
    width: 80vw;
    max-width: 1100px;
}

.outils_projet>p{
    text-align: start;
}

.outils_projet>div{
    margin: 70px auto 100px;
    justify-content: center;
    gap: 82px;
}

@media (min-width: 850px) {

    .liens_projet>div{
      grid-column: span 1;
      display: block;
    }
  
    .liens_projet .texte_site, .iframe_site{
      display: block;
    }
  
    .liens_projet .iframe_site{
      background-color: #fff;
      border-radius: 9px;
      overflow: auto;
      width: 100%;
      min-width: 375px;
      height: 700px;
      max-height: calc(100lvh - 100px);
    }
  
    .btns_choix_site{
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin: 20px auto 20px 0;
    }
    
    .btns_choix_site>label>span{
      background-color: var(--Saumon);
      color: var(--Noir);
      padding: 5px 10px;
      border-radius: 20px;
      cursor: pointer;
      transition: 0.6s;
      display: block;
      border: solid var(--Saumon) 2px;
    }
    
    .btns_choix_site input{
      display: none;
    }
    
    .btns_choix_site span:hover{
      transform: scale(1.1);
    }
    
    .btns_choix_site input:checked + span{
      background-color: var(--Noir);
      color: var(--Blanc);
    }
  }