/* Encabezado */
h1 {
  position: relative;
  font-size: 80px;
  font-weight: 900;
  font-family: '2070POLYESTER', sans-serif;

  /* Gradient del texto */
  background: linear-gradient(to bottom, #ffffff, #cfd8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
    /* Contorno */
  -webkit-text-stroke: 3.5px #637295;

  /* Sombra Paralela */
  filter:
  drop-shadow(4px 4px 0px rgba(7, 23, 56, 0.35))
  drop-shadow(7px 7px 0px rgba(255, 255, 255, 0.85));
}

/* Cuerpo */
body {
  /* Fuente de la pagina */
  font-family: 'Noto Sans JP', sans-serif;

  /* Fondo de la pagina */
  background-image: url(background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}