  body {
    color:darkblue;
      margin: 0;
      padding: 0;
      width: 100vw;
      min-height: 100vh;
      /* width: 75vw; */
      /* min-height: 75vh; */
      position: relative;
      a:link{ color:darkblue;}
    }

    body::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('/Images/After12Parnello.png');
      background-size: cover;
      background-position: center;
      opacity: 0.6;
      z-index: -1;
    }

    .content {
      position: relative;
      width: 50%;
      z-index: 1;
      color: grey;
      text-align: center;
      padding: 0px;
      font-size: 24px;
    }
  
    a:link { color: darkblue; }
    a:visited { color: darkblue; }
    /* a:visited { color: pink; } */
    a:hover { color: red; }
    a:active { color: yellow; }   

  .footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: red;
   color: darkblue;
   text-align: center;
   }