#comment-section {
  text-align: center;
  /* margin-bottom: calc(64px + 15px); */
  background: #2C2D2E;
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  border-top: 5px solid orange;
}

#comment-section .input-form {
  width: 100%;
  max-width: 800px;
}

#comment-section .button-section {
  display: flex;
  justify-content: center;
}

#comment-section .button-section #submitcomment {
  margin-bottom: 40px;
  font-size: 16px;
  background: url("/img/home/button_background.png") #2C2D2E;
  background-blend-mode: multiply;
  background-size: cover;
  color: white;
  border: 1px solid #F0A928;
  width: 100%;
  max-width: 300px;
  margin: 0 25px 20px 25px;
  border-radius: 5px;
  padding: 5px;
}

.comments .input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 25px;
}

.comments .input-container>* {
  border-radius: 5px;
  border: none;
  padding: 5px;
}

.comments .title {
  display: block;
  font-size: 1.5em;
  margin-top: 10px;
  margin-bottom: 20px;
}

.comments .description {
  padding: 0 25px;
}