/* -----------------HOMEPAGE ELEMENTS--------------- */
#sezione_progetto {
    /* outline: 1px solid black; */
    margin-top: -4rem;
    background: linear-gradient(#d1dace, #f1f1f1);
}
#sezione_progetto h1 {
  font-size: 2rem;
  animation: fadeInDown 1s ease-out;
}

h1 {
  white-space: nowrap;
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem !important;
  }
  #sezione_progetto h1 {
    font-size: 1.6rem !important;
  }
}

#sezione_progetto p {
  animation: fadeIn 1.5s ease-out;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#icon1 {
    color: rgb(48, 110, 246);
}
#icon1:hover {
    color: rgb(255, 255, 255);
}

.col_itin {
    background: linear-gradient( rgba(119,191,216, 0.800), rgba(119,191,216, 0.800) ), url("../images/itinerari_homepage.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.col_itin:hover {
    background: linear-gradient( rgba(119,191,216, 0.400), rgba(119,191,216, 0.400) ), url("../images/itinerari_homepage.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.col_archiv {
    background: linear-gradient( rgba(131, 124, 184, 0.799), rgba(131, 124, 184, 0.804) ), url("../images/archivio_homepage.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.col_archiv:hover {
    background: linear-gradient( rgba(131, 124, 184, 0.408), rgba(131, 124, 184, 0.404) ), url("../images/archivio_homepage.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

section p {
  text-align: justify
}