/*STILI E FONT STANDARD SCELTI PER TITOLI E CORPO*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --app-font: 'Poppins', 'DM Sans', sans-serif;
    font-size: 28px; /* default desktop */
    --bs-body-font-family: var(--app-font); /*Sovrascrive una regola css impostata da bootstrap l'animaccia sua*/
}

html{
font-family: var(--app-font);
}


.titolo_Red{
font-weight: 400;
font-size: 25px;
color: rgb(255, 58, 58);
}

.titolo_Orange{

font-weight: 400;
font-size: 1rem;
color: rgb(238, 157, 35);
}


.titolo_Gray{
font-weight:400; 
color: rgb(104, 104, 104);
}
.titolo_Gold{
font-weight:400; 
color: rgb(214, 187, 151);
font-size: 0.8rem;
}
.titolo_Beige{
font-weight:400; 
color: rgb(255, 238, 217);

}

.corpo_DarkGray{
font-size: 0.7rem;
  color:rgb(76, 75, 75); 
  font-weight:300;
}

.corpo_DarkGray_Bold{

  color:rgb(76, 75, 75); 
  font-weight:400;
  font-size: 1.1rem;
}


.corpo_thinGray{

  color:rgb(124, 124, 124); 
  font-weight:200;
}

.corpo_Copyright{

  color:rgb(0, 0, 0); 
  font-weight:300;
  font-size: 0.5rem;
}


/* Copyright*/
footer{
padding: 40px;
text-align: center;
max-height: auto;
font-size: clamp(0.7rem, 1.5vw, 0.9rem);  /*font minimo normale e massimo a seconda della risoluzione*/
}