.body-container {
  text-align: center;
  padding: 20px;
}

.body-container h2 {
  font-size: 28px;
  color: #000;
}

.body-container p {
  font-size: 16px;
  color: #333;
  margin: 10px 0;
}

.confession-box {
  background-color: #fff;
  border: 2px solid #ff9800;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  max-width: 500px;
  position: relative;
}

.confession-box::before, .confession-box::after {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 24px;
  position: absolute;
  color: #000;
}

.confession-box::before {
  top: -10px;
  left: 10px;
}

.confession-box::after {
  bottom: -10px;
  right: 10px;
}

.confession-box textarea {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  font-size: 16px;
  padding: 10px;
  box-sizing: border-box;
}

.submit-btn {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}