:root {
    /* Colors */
    --color-primary: #4056F4;
    --color-secondary: #C0FF00;
    --color-light: #fbfbfb;
    --color-dark: #1a1a1a;
    --color-gray: #cbcbcb;
    
    /* Typography */
    --font-primary: 'dm sans', sans-serif;
    --font-display: sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    
    /* Other UI Properties */
    --border-radius: 2px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

html{
     scroll-behavior:smooth;
}


*{
    /* border: 1px solid red; */
    margin: 0 ;
    padding: 0;

}

body{
    font-family: 'dm sans', sans-serif;
     padding-top: 70px;
     cursor: none;

     background-color: var(--color-light);

    
   
}



.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1.5px solid white;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, border-color 0.2s;
  z-index: 9999;
  mix-blend-mode: difference;
  background-color: transparent;
}



body.body__cube{
   padding-top: 0px !important;
}

.grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  /* padding: 0; */
  margin: 0 auto;
  box-sizing: border-box;

  padding: 1rem;
  gap: 1rem;

  max-width: 1200px;


}

.grid2{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  /* padding: 0; */
  margin: 0 auto;
  box-sizing: border-box;

  padding: 1rem;
  gap: 1rem;
}

section{
  margin-top: 50px;
  scroll-margin-top: 70px; /* Altezza della tua navbar */

  
}

a {
  text-decoration: none;
  color: var(--color-dark) !important;
}

  .title {
    grid-column: 1/ 13 !important;
    text-align: center;
    color: var(--color-primary);
text-align: left;
    font-size: 60pt;
font-weight: 600 !important;
}

.subtitle{
  color: var(--color-primary);
  grid-column: 2/ 12;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
  font-size: 4em;
}




.title span{
transition: all 0.2s ease-in-out !important;
}

.title span:hover{
  letter-spacing: 40px;

}



/* -------------------------------------------------------------------------------- */
/* ! CUBE */
/* -------------------------------------------------------------------------------- */

footer.footer_nobg{
  background-color: transparent !important;
  
}


.one-page h1{
  font-size: 10vw;
  text-align: center;
  grid-column: 1/ 13;
  margin: 0 auto;

}

  .cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(0deg) rotateY(0deg);
  
  }

  .face {
    position: absolute;
    width: 220px;
    height: 220px;
    background: var(--color-secondary);
    
    opacity: 0.95;
    border: #4056F4 solid 0.5px;

    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    /* border: 2px solid #B0FF32; */
    box-sizing: border-box;
    transition: background 0.3s;
  }
  
  .face a {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    
    transition: opacity 0.3s;
  }
  
  .face:hover {
    background: var(--color-primary);
  }
  
  .face a:hover{
    color:var(--color-secondary);
  }
  
  .front  { transform: rotateY(  0deg) translateZ(110px); }
  .back   { transform: rotateY(180deg) translateZ(110px); }
  .right  { transform: rotateY( 90deg) translateZ(110px); }
  .left   { transform: rotateY(-90deg) translateZ(110px); }
  .top    { transform: rotateX( 90deg) translateZ(110px); }
  .bottom { transform: rotateX(-90deg) translateZ(110px); }
  


.scene{

width: 220px;
height: 220px;
perspective: 1000px;
/* cursor: grab; */
margin: 0 auto;
/* z-index: 1; */
user-select: none;

 pointer-events: auto; /* ok solo se interattivo */
  touch-action: none;   /* previene scroll ma serve solo durante il drag */

}

.cube-menu{
    grid-column: 3/11;
    margin-top: 30px;
    margin-bottom: 30px;
}

.instruction{
    grid-column: 3/11;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 300;
}

@media (max-width: 500px) {


 
    .scene {
      width: 150px;
      height: 150px;
    }
  
    .face {
      width: 150px;
      height: 150px;
      transform: none;
      font-size: 1rem;
    }

    .face a {
      font-size: 1rem;
    }
  
    .front  { transform: rotateY(  0deg) translateZ(75px); }
    .back   { transform: rotateY(180deg) translateZ(75px); }
    .right  { transform: rotateY( 90deg) translateZ(75px); }
    .left   { transform: rotateY(-90deg) translateZ(75px); }
    .top    { transform: rotateX( 90deg) translateZ(75px); }
    .bottom { transform: rotateX(-90deg) translateZ(75px); }

    .cube-menu{
        grid-column: 3/11;
        margin-top: 80px;
        margin-bottom: 80px;
    }
    
.instruction{
    margin-top:0px;
    margin-bottom: 0px;
    font-size: 12px;
}


  }








  
  
/* -------------------------------------------------------------------------------- */
/* ! ABOUT */
/* -------------------------------------------------------------------------------- */

  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    background-color: rgba(251, 251, 251, 0.726);
  
    
   
  }

  
  .logo {
   grid-column: 1/4;
    font-weight: bold;
    
     
  }

  .logo a{
padding: 0.2rem;
border-radius: var(--border-radius);
font-size: 3em;

color: var(--color-primary) !important;

  }
  
  .nav-links {
    grid-column: 4/ 13;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
  }
  
  .nav-links a {
    text-decoration: none;
    
   
font-size: 3em;
padding: 0.2rem;
border-radius: var(--border-radius);

color: var(--color-primary) !important;

transition: all 0.2s ease-in-out;

  }


   .nav-links a:hover, .logo a:hover{
   
     font-weight: bold;
   }


   .nav-links.closing {
  right: -100%;
}

  
/* Hamburger */
.hamburger {
  display: none;
  grid-column: 12/13;

  justify-self: end;

  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1100;
 
}

.hamburger span {
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--color-primary);
  left: 0;
  transition: 0.3s ease;
}

.hamburger.open span{
    background: var(--color-secondary) !important;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

/* Animation to X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;

}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}



/*welcome*/

.welcome p{
    grid-column: 1/13;
    font-weight: 300;
    font-size: 2em;
}

.welcome p span{
     color: var(--color-primary);
     transition: ease-in-out 0.2s;
}

.welcome p span:hover{
   
    font-weight: 900;
}



.profilo {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 1 / 1;
  transition: all 0.3s ease;
}

.profilo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

/* Blur sopra l'immagine ma dentro i bordi */
.profilo::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px); /* regolabile */
  border-radius: inherit;
  z-index: 2;
  transition: backdrop-filter 0.3s ease;
  pointer-events: none;
}

/* Al passaggio: nessun blur */
.profilo:hover::before {
  backdrop-filter: none;
}

/* Posizioni sulla griglia */
.profilo1 { grid-column: 1 / 4; }
.profilo2 { grid-column: 4 / 7; }
.profilo3 { grid-column: 7 / 10; }
.profilo4 { grid-column: 10 / 13; }



/* -------------------------------------------------------------------------------- */
/* ! CV */
/* -------------------------------------------------------------------------------- */
/*SKILLS*/


h4{
  color: var(--color-primary);
  grid-column: 2/ 12;
  font-size: 2em;
}

.skills__adobe{
 grid-column: 2/6;

}
.skills__img{
    display: flex;
    justify-content: space-between;
}

.skills__figma{
    grid-column: 7/8;
}

.skills__html{
    grid-column: 9/12;
}

.skills h3{
    grid-column: 1/13;
    margin-bottom: var(--spacing-xs);
   
}

.skills img{
    /* width: 100%;           Fills the grid area */
  max-width: 100%;       /* Prevents overflow */
  min-width: 30px;       /* Ensures minimum size */
  height: 50px;          /* Maintains aspect ratio */
  display: block;        /* Removes inline spacing */
}

.cta__skills{
  
    grid-column: 6/8;
    text-align: center;
    
    border: 1px solid var(--color-dark);
    background-color: var(--color-secondary);
  padding: 0.5rem 1rem;

  /* font-weight: bold; */
  border-radius: var(--border-radius);
  text-decoration: none !important;

  margin-bottom: var(--spacing-md);

   transition: all 0.2s ease-in-out;
}

.cta__skills:hover, .cta__contact:hover{
   
    font-weight: bold;
}



.cv__card{
grid-column: 2/12;

align-items:baseline;
justify-content: center;
padding: 0 !important;

margin-bottom: var(--spacing-md);


/* animation */
opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* animation */
.cv__card.reveal {
  opacity: 1;
  transform: translateY(0);
}
/*fine animation*/

.cv__date{
grid-column: 1/4;
}

.cv__title{
grid-column: 4/8;
font-weight: bold;
font-size: 1.2em;
}

.cv__description{
grid-column: 8/13;
}

.green{
    background-color: var(--color-secondary);
    border-radius: var(--border-radius);
    padding: 0.5rem 0.5rem !important;
}



/*TIMELINE CV*/

.timeline h4{
  margin-bottom: 1rem;
  margin-top: 2rem;
}

/* .timeline{
  gap: 0px 1rem !important;
 
} */


.timeline__date {
    grid-column: 2/4;
    
}

.timeline__separator {
    grid-column: 4/5;
    background: var(--color-secondary);
    position: relative;
    width: 5px; /* Una linea sottile */
    
     min-height: 100%; 
     border-radius: 5px;
}

.timeline__separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-secondary);
    border-radius: 50%;
    height: 1.5rem;
    width: 1.5rem;
}

.timeline__content {
    grid-column: 5/12;
}

.timeline__title {
    font-weight: 800;
}

.timeline__description {
    margin-bottom: 1rem;
}







/* -------------------------------------------------------------------------------- */
/* ! PORTFOLIO */
/* -------------------------------------------------------------------------------- */

/* Filtri */
.filters {
  grid-column: 2 / 12;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: left;
  margin-bottom: 1rem;

}

.filters button{
  border: 1px solid var(--color-dark);
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: 0.5rem 1rem;
 
  border-radius: var(--border-radius);
font-family: var(--font-primary);
   transition: all 0.2s ease-in-out;

}

.filters button:hover {
    font-weight: bold;
}

.filters button.active {
  background-color: var(--color-secondary);
}

/* Progetti */
.project {
  grid-column: span 3;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.2s ease;
  background-color: var(--color-gray);
  
}

.project:hover {
  transform: scale(1.01);
}

.project.hidden {
  display: none;
}

.project-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(4px);
  transition: filter 0.2s ease;
}

.project-content:hover img {
  filter: blur(0);
}


.project-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4); /* oppure 0.6 per più contrasto */
  color: var(--color-light);
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
    transition: filter 0.3s ease, background-color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4); /* ombra visibile da nitido */
  backdrop-filter: none; /* fallback, se serve */
}

.project-content:hover .project-title {
  filter: blur(2px);
  opacity: 1;
  background-color: transparent;
  text-shadow: none;
}




/*DISPOSITIVI LARGE*/
@media (max-width: 1024px) {
  .nav-links a {
    font-size: 2.4rem;
  }

    .logo a{
    font-size: 2.4rem;
  }

  /*project*/
  .project {
    grid-column: span 6;
  }
}

/* DISPOSITIVI MEDIUM */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    opacity: 0.9;
    flex-direction: column;
    justify-content: center;
    align-items:flex-end;
    gap: 2rem;
    transition: right 0.3s ease-in-out;
    display: flex;
    z-index: 1000;
    
  }



  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  .nav-links a {
    font-size: 2rem;
    margin-right: 1rem;
color: var(--color-secondary) !important;

    
  }

.logo{
    grid-column: 1/11;
}



h1.title{
    font-size: 40pt !important;



  }



  .subtitle{
    font-size: 3em;
    margin: 20px 0px;
  }

  .welcome p{
    font-size: 1.5em;
  }


  /*contact*/
  h5.contact__title{
 font-size: 2.5em !important;
}

 
}


/* DISPOSITIVI SMALL */


@media (max-width: 600px) {

.grid{
    gap: 0.5rem;
}

h1.title{
    font-size: 30pt !important;

  }

 .subtitle{
    font-size: 2.5em;
    grid-column: 1/13 ;
 }

 .logo a{
    font-size: 1.5em !important;
 }

.skills__adobe, .skills__figma, .skills__html{
    grid-column: 1/13;
  }

.cta__skills{
  
    grid-column: 5/9;
}

.profilo1 { grid-column: 1 / 7; }
.profilo2 { grid-column: 7 / 13; }
.profilo3 { grid-column: 1 / 7; }
.profilo4 { grid-column: 7 / 13; }


/*cv timeline*/

.timeline{
  font-size: 13px;
}

.timeline__date {
    grid-column: 1/5;   
}

.timeline__content
{
    grid-column: 6/13;
    }

.timeline__separator{
    grid-column: 5/6;
  
}

/*scroll*/

.scroll-track span {
  font-size: 1.5rem !important;
}



/*projects*/
.project {
    grid-column: span 12;
  }

  .filters {
  grid-column: 1 / 13;
  }

/*contact*/

h5.contact__title{
 grid-column: 1/13 !important;
 font-size: 2.5em !important;
}

.contact__form {
  grid-column: 1 / 13 !important;
}



/*footer*/
.footer__contact{
  grid-column: 1/12 !important;
  margin-bottom: var(--spacing-sm);
}

.footer__menu{
grid-column: 1/6 !important;
}

.footer__legal{
  grid-column: 6/11 !important;
}

.top-button{
  grid-column: 12/13 !important;
}

}








/* -------------------------------------------------------------------------------- */
/* ! CONTACT ME */
/* -------------------------------------------------------------------------------- */

.contact {
  color: #C0FF00;
  background-color: #4056F4;
      border-radius: var(--border-radius);
}


h5.contact__title {
  grid-column: 2 / 5;
 font-size: 4em;
  font-weight: bold;
  align-self: start;
  line-height: 1.1;
   color: #C0FF00;
}

.contact__form {
  grid-column: 6 / 12;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 1rem;
}

.contact__form input,
.contact__form textarea {
  background-color: rgba(255,255,255,0.2);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.5rem;
  color: #fff;
  margin-top: 0.25rem;
}

.contact__form textarea {
  resize: vertical;
  min-height: 100px;
}

/* .contact__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
} */

.contact__bottom {
  font-size: 0.75rem;
  line-height: 1.2;
  color: white;
  
}

.contact__bottom a {
  color: #C0FF00 !important;
  text-decoration: underline;
  
}

.contact__bottom button {
  all: unset;
  background-color: #C0FF00;
  color: #4056F4;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius);
  font-weight: bold;
 
}

.cta__contact button{
color: var(--color-dark) !important;
  all: unset;
 width: 30%;
  text-align: center;
    
    border: 1px solid var(--color-dark);
    background-color: var(--color-secondary);
  padding: 0.5rem 1rem;
  

      /* font-weight: bold; */

  border-radius: 4px;
  text-decoration: none !important;

  transition: all 0.2s ease-in-out;

}

.cta__contact{
  display: flex;
  justify-content: right;
}




/*popup*/


.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 24, 119, 0.353);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.success-popup-content {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    width: 90%;
    
}

.success-popup h3 {
    color:var(--color-primary);
    margin-top: 0;
    font-size: 1.5rem;
}

.success-popup p {
    color: var(--color-primary);
    margin: 1rem 0;
    line-height: 1.4;
}

.success-popup button {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}



/*slider*/



.scroll-container {
  width: 100%;
  overflow: hidden;
  background: var(--color-secondary);
  color: var(--color-primary);
  margin-top: var(--spacing-md);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.scroll-track {
  display: flex;
  grid-column: 1 / 13;
  width: fit-content;
  animation: scroll 20s linear infinite;
  will-change: transform;
}

.scroll-content {
  display: flex;
  white-space: nowrap;
}

.scroll-content span {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}










/* -------------------------------------------------------------------------------- */
/* ! FOOTER */
/* -------------------------------------------------------------------------------- */


footer{
  background-color: var(--color-secondary);
}

.footer__contact{
  grid-column: 2/7;
}

.footer__menu{
  grid-column: 7/9;
}

.footer__legal{
  grid-column: 9/11;
}

.top-button{
  grid-column: 11/12;
  text-align: end;
  transition: all 0.2s ease-in-out;
}

.top-button:hover{
  font-size: 3em;
}

.footer__content li{
  list-style: none;
}

.footer__content p{
  font-weight: bold;
}

.footer__contact i{
font-size: 30px;
margin-right: 1rem;
}

.footer__content a:hover{
  color: var(--color-primary) !important;
}

/* -------------------------------------------------------------------------------- */
/* ! BUTTON */
/* -------------------------------------------------------------------------------- */

button{
  all: unset;

}


.top-button {
  /* position: fixed;
  bottom: 1rem;
  right: 1rem; */



font-size: 1.5em;
}

.top-button i{
  pointer-events: none;
}





/* -------------------------------------------------------------------------------- */
/* ! SINGLE PROJECT PAGE */
/* -------------------------------------------------------------------------------- */

.filter__project a{
   border: 1px solid var(--color-dark);
  background-color: var(--color-secondary);
  color: var(--color-dark);
  padding: 0.5rem 1rem;
 
  border-radius: var(--border-radius);
font-family: var(--font-primary);
   transition: all 0.2s ease-in-out;
}

.filter__project a:hover {
    font-weight: bold;
}

.filter__project{
grid-column: 8 / 13;
 margin-top: 50px;
 text-align: right;
 color: var(--color-primary);
}

.project__program{
  margin-top: var(--spacing-sm);
}

.intro__project{
grid-column: 2/ 8;

}




button.back-button{

  grid-column: 1/2;
color: var(--color-dark);
  all: unset;
   font-size: 2em;
    justify-self: start; /* allinea a sinistra */
  align-self: start;   /* allinea in alto */
  margin-top: var(--spacing-md);
}

.title-project{
  color: var(--color-primary);
  grid-column: 2/ 9;
  margin-top: var(--spacing-md);
  margin-bottom: 30px;
  font-size: 4em;
  text-align: left !important;
}


.description__project img {
 
  width: 100%;       /* si adatta alla larghezza della colonna */
  object-fit: cover; /* mantiene il riempimento e ritaglia se serve */
  display: block;
  border-radius: var(--border-radius);

}
.height{
 height: auto;     /* altezza fissa per tutte */
}


.description__project p{
      font-weight: 300;
    font-size: 1.5em;
}

.description__project p span{
  font-weight: bold;
}

.project_img_full{
  grid-column: 1/13;
}

.project_img_uno{
 grid-column: 1/7;
 }


.project_text_uno{
 grid-column: 7/13;
}


.project_text_due{
 grid-column: 1/7;
 }

.project_img_due {
 grid-column: 7/13;
}


.project_img_tre{
grid-column: 1 / 5;
 }

 .project_img_quattro{
grid-column: 5 / 9;
 }

 .project_img_sei{
grid-column: 5 / 9;
 }

 .project_img_sette{
grid-column: 9 / 13;
 }

 .project_img_otto { grid-column: 1 / 4; }
 .project_img_nove { grid-column: 4 / 7; }
 .project_img_dieci { grid-column: 7 / 10; }
 .project_img_undici{ grid-column: 10 / 13; }


.ratio{
  aspect-ratio: 1/1;
}






@media (max-width: 900px) {

  .filter__project{
grid-column: 1 / 13;
 margin: 0px;
 text-align: left;

}
.intro__project{
grid-column: 1/ 13;
}

.title-project{
margin: 0px !important;
grid-column: 1/ 13;
}


button.back-button{
  margin-top: 0px;
}



.description__project p{
font-size: 1.2em;

}



.project_img_uno{
 grid-column: 3/13;
 }


.project_text_uno{
 grid-column: 3/13;
}


.project_text_due{
 grid-column: 1/11;
 }

.project_img_due {
 grid-column: 1/11;
}


.project_img_tre{
grid-column: 1 / 6;
 }

 .project_img_quattro{
grid-column: 6 / 11;
 }

 .project_img_sei{
grid-column: 2 / 7;
 }

 .project_img_sette{
grid-column: 7 / 13;
 } 

 .project_img_otto { grid-column: 1 / 6; }
 .project_img_nove { grid-column: 6 / 11; }
 .project_img_dieci { grid-column: 3 / 8; }
 .project_img_undici{ grid-column: 8 / 13; }




}

@media (max-width: 600px){
.title-project{
font-size: 3em;
}

  .filter__project{
font-size: 13px;

}


}

@media (max-width: 425px){


.title-project{
font-size: 2em;
}


.description__project p{

    font-size: 1em;

}


.project_img_uno{
 grid-column: 1/13;
 }


.project_text_uno{
 grid-column: 1/12;
}


.project_text_due{
 grid-column: 2/13;
 }

.project_img_due {
grid-column: 1/13;
}


.project_img_tre{
grid-column: 1/13;
 }

 .project_img_quattro{
grid-column: 1/13;
 }

 .project_img_sei{
grid-column: 1/13;
 }

 .project_img_sette{
grid-column: 1/13;
 } 

 .project_img_otto { grid-column: 1/13; }
 .project_img_nove { grid-column: 1/13; }
 .project_img_dieci { grid-column: 1/13;}
 .project_img_undici{ grid-column: 1/13; }



}