*{
  margin:0;
  padding:0;
  box-sizing: border-box;
}

.container{
  max-width: 900px;
  margin: 40px auto;
}
.flex{
  display: flex;
}
.flex_c{
    display: flex;
    justify-content: center;
}
.flex_c_sb{
    display: flex;
    justify-content: space-between;
  align-items: center;
}
.text{
  font-size: 12px;
  word-break: break-all;
  line-height: 1.5;
}
.params{
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}
.block{
  padding: 20px 0;
  border-bottom: 1px dashed #888;
  &:last-child{
    border-bottom: none;
  }
  textarea{
    width: 100%;
    padding: 12px;
  }

  h2,h3{
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
  }
}
.result{
  background-color: #f6f6f6;
  padding: 12px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 12px;
}

button{
  cursor: pointer;
  padding: 4px 10px;
}