:root {
  --white: white;
  --black: black;
}

.body {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/sfondo.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  font-family: Montserrat, sans-serif;
}

.logo-sito {
  width: 250px;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%);
}

.copyright {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%);
}

.content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content.sotto {
  top: 72%;
}

.h2 {
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
}

.contatti {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
}

.link {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .copyright {
    text-align: center;
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .content {
    width: 98%;
  }

  .h2 {
    font-size: 40px;
  }
}

@media screen and (max-width: 479px) {
  .logo-sito {
    width: 150px;
    top: 20px;
  }

  .copyright {
    font-size: 12px;
    line-height: 14px;
  }

  .content {
    width: 99%;
  }

  .h2 {
    letter-spacing: 1px;
    font-size: 25px;
    line-height: 25px;
  }

  .contatti {
    font-size: 14px;
  }
}
