body {
  background-color: #f5f5dc;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  gap: 75px;
  font-size: 22px;
}

#titolo {
  font-family: 'Helvetica Neue', sans-serif;
  margin: 6%;
  text-align: center;
  font-size: 2em;
}

#introduzione {
  width: 50%;
  text-align: justify;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.link {
  color: black;
  border-radius: 50%;
  position: relative;
  border: 1.5px solid grey;
  width: 10vw;
  height: 10vw;
  min-width: 200px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
  background: none;
}

.link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left,
      rgba(141, 32, 79, 0.9),
      rgba(97, 38, 186, 0.9),
      transparent 70%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.link:hover::before, .link.cliccato::before {
  transform: scale(3);
}


.titoloP {
  text-align: center;
}

#intro {
  margin: 0 2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2vw;
}

#ncumf {
  border-radius: 20px;
}

@media (max-width: 650px) {
  #introduzione {
    width: 75%;
  }

  #ncumf {
    width: 75vw;
  }
}
