/*UTIL CSS*/
:root {
  --blu: #205282;
  --giallo: #fecb08;
  --text-color: #000;
  --background-color: #fff;
}
.d-flex {
  display: flex;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-end {
  justify-content: flex-end;
}
.aling-items-center {
  align-items: center;
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.btn-primary:hover {background-color: var(--giallo);}


