body {
  background: black;
  color: white;
  margin: 50px;
}

.logo {
  filter: invert(1);
  width: 25%;
}

.text {
  height: 50%;
  display: flex;
  align-items: center;
}

.promt {
  font-family: "Lucida Console", "Courier New", monospace;
  font-size: large;
}

.cursor {
  animation: blink 1s linear infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
