.intro-landing {
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
  font-size: 1.1rem;
  color: #444;
}

.linea {
      background: #faf332;
      height: 5px;
      width: 400px;
      margin: 0 auto 30px;
      display: block;
    }

    .light-box {
      position: fixed;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, .8);
      width: 100%;
      height: 100vh;
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: scale(0);
      transition: transform 0.3s ease-in-out;
    }

    .light-box:target {
      transform: scale(1);
    }

    .light-box img {
      width: auto;
      max-height: 90vh;
      max-width: 80vw;
    }    