/**************************/
/*  */
/**************************/
.screen-selection {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 2rem;
  row-gap: 7rem;
}

.screen-selection a {
  text-decoration: none;
  position: relative;
}

.screen-selection a img {
  min-height: 10rem;
  max-height: 20rem;
  min-width: 28rem;
  max-width: 32rem;
  height: auto;
  width: auto;
  border-radius: 5%;
  transition: all 0.5s;
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7); /* Aggiunto box-shadow nero */
}

.screen-selection a p {
  text-align: center;
  color: white;
  font-size: 2rem;
  letter-spacing: 0.75px;
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.screen-selection a:hover p {
  opacity: 1;
  z-index: -1;
}

.screen-selection a img:hover {
  transform: scale(1.1);
  opacity: 0.2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7); /* Aggiunto box-shadow nero */
}
