@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: 'SmithyXT';
  src: url('../fonts/SmithyXT-Regular-v2.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  /* font-display: swap; */
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

#intro {
  min-height: 100vh;
  width: 100%;
	position:relative;

  background-image: url("../img/bg-image.jpg");
  background-repeat: no-repeat;

  background-position: left bottom;
  background-size: cover;
}
.intro-title {
  position: absolute;
  top: 30%;               
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* testo in basso */
.intro-footer {
  position: absolute;
  bottom: 10px;
  right: 5px;
  

  font-size: 12px;
  line-height: 1.3;
  color: #fff;
  opacity: 0.8;
  text-align: right;
  
}
@media (min-width: 992px) {
  .intro-title {
    top: 80%;
    transform: translate(-50%, -50%);
  }
	.intro-footer {
  position: absolute;
  bottom: 10px;
  	left: 50%;
  transform: translateX(-50%);
  

  font-size: 12px;
  line-height: 1.3;
  color: #fff;
  opacity: 0.8;
  text-align: center;
  
}
}

h1 {
  font-family: 'SmithyXT', sans-serif !important;
	color:#fff;
}