.main {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

.step {
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  width: 100%;
  gap: 15px;
}

.step p {
  font-size: 24px;
  text-align: center;
  max-width: 500px;
  margin-bottom: 20px;
}

.step img {
  max-width: 700px;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .step p {
    font-size: 16px;
    padding: 0 10px;
  }

  .step img {
    max-width: 100%;
    height: auto;
  }
}

.chat-log {
  background: black;
  border: 4px solid #a0aec0;
  padding: 15px 20px;
  border-radius: 8px;
  font-family: monospace;
  line-height: 1.6;
  margin-top: 10px;
  color:green;
  text-align: initial;
}