html, body {
      height: 100%;
      margin: 0;
    }
    body {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .main {
      width: 90%;
      height: 80%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .button-wrapper {
      display: flex;
      justify-content: center;
      gap: 40px;
      width: 100%;
    }
    button {
      font-size: 20px;
      padding: 10px 20px;
    }
    .container {
      display: flex;
      gap: 20px;
      width: 100%;
      height: 100%;
    }
    textarea {
      width: 50%;
      height: 100%;
      font-size: 24px;
      padding: 10px;
      resize: none;
    }
