* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


.container{
 background: linear-gradient(to right, rgba(14, 135, 175, 0.9), rgba(14, 135, 175, 0.3)), url("../img/istruzioni-per-farmi-fuori-1.jpg") center top;
 background-size: contain;
 height:100vh;
}

.titleContainer{
    height:100vh;
    display: flex;
   flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title{
  font-family: 'Cabin Sketch', 'Segoe UI';
  font-size: 3rem;
  color:white;
  text-align: center;
}

#titleSpan{
    color: #e6213c;
}

.subtitle{
 font-family: 'Cabin Sketch', 'Segoe UI';
  font-size: 1.7rem;
  color:white;
  text-align: center;
  margin-top: -1rem;
}

@media screen and (max-width: 500px) {
 .title{
    font-size: 1.7rem;
 }
 .subtitle{
    font-size: 0.9rem;
 }

}