
body {
  background-color: #f3efff;
  font-family: 'Courier New', Courier, monospace;
  color: #675CFF;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  overflow-y: auto;
}

.container {
  text-align: left;
  max-width: 600px;
  padding: 100px 20px 80px;
}

.text {
  font-size: 20px;
  line-height: 1.8;
  white-space: pre-wrap;
  margin-bottom: 30px;
}

.button {
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;
  color: #675CFF;
  background: none;
  border: 0.9px solid #675CFF;
  padding: 10px 20px;
  cursor: pointer;
  display: block;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .text, .button {
    font-size: 16px;
  }
}
