﻿
/* pone el color de fondo */



.armazón {
  height: 65px;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  background: #feb236;
  color: black;
  overflow: hidden;
}

.submitad {
  height: 65px;
  width: 50%;
  background: #d64161;
  overflow: hidden;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
}

.pasador {
  position: absolute;
  top: 50%;
  white-space: nowrap;
  font-size: 1.4rem;
  line-height: 80%;

  overflow: hidden;
  font-family: "Barlow Semi Condensed", sans-serif;
  animation: animate 35s linear infinite;


}

@keyframes animate {
  0% {
    transform: translate(0, -50%);
  }
  100% {
        transform: translate(-50%, -50%);
  }
}
