body {
  display: flex;
  min-height: 100vh;
  margin: 0;
  background-color: #111;
  justify-content: space-evenly;
  align-items: center;
}

.typing {
  width: 50%;
  font-family: 'Roboto Mono', sans-serif;
  font-size: 40px;
  color: greenyellow;
  font-weight: 700;
}

.typing p {
  margin: 0;
  line-height: 150%;
  text-shadow: 0 0 2px greenyellow;
}

.typing p::before {
  content: "> ";
}

.typing p:nth-last-of-type(1)::after {
  content: "_";
  animation: cursor .3s infinite alternate;
}
.robot {
  box-sizing: border-box;
  width: 30%;
  padding: 3%;
}

@keyframes cursor {
  0%, 30% {
    opacity: 0
  }
  70%, 100% {
    opacity: 1
  }
}

@media (max-width: 1023px) {
  body {
    flex-direction: column;
  }
  .robot {
    position: absolute;
    top: 30px;
    
    width: 50%;
  }
  .typing {
    position: absolute;
    bottom: 50px;
    font-size: 20px;
    width: 80%;
    
  }
}