* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

#output {
  position: fixed;
  height: 75px;
  background-color: #0b9eb0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

#text {
  font-size: 2.8rem;
  font-weight: bold;
  color: white;
}

#blinker {
  height: 3rem;
  width: 8px;
  background-color: white;
  animation-name: blink;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}

@keyframes blink {
  from {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/*# sourceMappingURL=project3.css.map */
