@charset "UTF-8";
/* CSS Document */

/*contenedor*/
.container_header {
  position: relative;
  text-align: center;
  color: white;
}
/*abajo a la izquierda*/
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}
/* arriba a la izquierda*/
.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}
/* arriba a la derecha */
.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}
/*abajo a la derecha*/
.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}
/*centrado*/
.centered {
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bottom-centered{
  position: absolute;
  bottom: 6px; 
  left: 50%;
  transform: translatex(-50%);
}

