* {
  font-family: system-ui, sans-serif;
  font-size: 18px;
}

body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
}

textarea {
  width: 100%;
}

.title {
  text-align: center;
  font-size: 2em;
}

.banner {
  background-color: #f4f4f4;
  width: 40%;
}

.results {
  display: flex;
  gap: 2rem;
}

@media (max-width: 800px) {
  body {
    flex-direction: column;
  }
  .banner {
    width: 100%;
    height: 300px;
  }
  .results {
    display: block;
  }
}
