html {
    scroll-behavior: smooth;
    background-color: black;
    height: 100%;
    width: 100%;
  }
  
    *, *:before, *:after {
      box-sizing: inherit;
  }
  

  
  header,
  footer, nav {
      padding: 35px;
  }
  
  
    header {
    grid-column: 1 / span 2; 
    grid-row: 1 / span 1; 
      width: auto;
      height: auto;
      color: white;
      font-family: 'Electrolize', serif;
      text-shadow: 10px 10px 10px black, 0 0 25px blue, 0 0 40px blueviolet; 
  }
  
    body {
      height: auto;
      padding: 20px 0;
      background-color:black;
      display: grid;
            align-items: center;
      grid-template-columns: repeat( auto-fit, minmax(320px, 1fr) );

  }
  
  h2 {
    font-size:20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 10px 10px 10px black, 0 0 100px blue, 0 0 40px blueviolet;
    text-align: center;
  }
  
  
article {
  grid-column: 1 / span 2;
  grid-row: 2 / span 2;
}
  
  .glow {
    font-size: 30px;
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
  }
  
  @-webkit-keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #0000ff, 0 0 40px #0000ff, 0 0 50px #fa8ce8, 0 0 60px #fa8ce8, 0 0 70px #fa8ce8;
    }
   
    to {
      text-shadow: 0 0 20px #fa8ce8, 0 0 30px #ff9ffc , 0 0 40px #ff9ffc, 0 0 50px #ff9ffc, 0 0 60px #ff9ffc, 0 0 70px #ff9ffc, 0 0 80px #ff9ffc;
    }
  }
  
  
  a {
      color:white;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: .5em;
  }
  
  .glitch {
    transform: translate(-50%, -50%);
    transition: 1s;
  }
  
  .glitch::before {
    background: #0ff;
    transition: .5s;
    transform: scale(.9);
    z-index: -1;
  }
  
  .glitch:hover::before {
    transform: scale(1.1);
   
  }
  
  .glitch:hover {
    color: #0ff;
  
    text-shadow: 0 0 5px #0ff;
  }

  
  svg {
	vertical-align: middle; 
	overflow: hidden;
  }
  
  p {
    color: white;
    font-family: 'Montserrat', sans-serif;
  }

  
  blockquote {
    color: white;
    font-family: 'Montserrat Alternates', sans-serif;
  }
  
  /*media queries*/
  
  /*Impresión*/


@media (prefers-reduced-motion: reduce) {
	
  .animation {
	
    animation: none;
	
  }
	
}

@media screen and (min-width:768px) {


   nav {
    grid-column: 1 / span 2;
    grid-row: 2 / span 2;
  }
  
  footer {
    grid-column: 3 / span 1;
    grid-row: 1 / span 3;
    text-align: center;
  } 
}

@media screen and (max-width:765px) {
  footer {
    grid-column: 1 / span 1;
    grid-row: 3 / span 1;
  }
}


  
  