/* Fons de la pàgina */

body {
  margin: 0;
  height: 100vh;
  background-size: cover;
}

body.home {
  background: url('../../assets/img/LandscapeImage.jpg') no-repeat center center;
  background-size: cover;
}

/* Contingut centrat al mig de la pantalla */

#cdiv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Text blanc */

h1.fwhite {
  color: white;
}

p.fwhite {
  color: white;
}

/* Responsivitat */

@media (min-width:320px) {
  h1.fwhite {
    font-size: 32px;
  }
}

@media (min-width:320px) {
  p.fwhite {
    font-size: 16px;
  }
}

@media (min-width:768px) {
  h1.fwhite {
    font-size: 48px;
  }
}

@media (min-width:768px) {
  p.fwhite {
    font-size: 22px;
  }
}

@media (min-width:992px) {
  h1.fwhite {
    font-size: 64px;
  }
}

@media (min-width:992px) {
  p.fwhite {
    font-size: 28px;
  }
}

