/* Inicialización CSS */

html, body {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

/* Contenedor de artículos */

article {
  display: block;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  transition: top 1s;
}

/* Estilos para el botón Play */

.button {
  display: inline-block;
  padding: .5em;
  text-decoration: none;
  border: 1px solid;
  color: #fff;
  transition: background 1s, color 1s, font-size 1.5s;
}

.button:hover {
  background: #fff;
  color: #000;
  font-size: 4em;
}

/* Ajuste de tamaño y posición */

.big {
  font-size: 3em;
}

.centered {
  width: 4em;
  display: block;
  margin: 0 auto 0 auto;
}
