:root {
  --table-wrapper-border: linear-gradient(-45deg, rgba(108, 40, 172, 0.6), rgba(139, 43, 168, 0.6));
}

.main {
  flex:  1 0 fit-content;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(34, 32, 34, 0.7);
  
}

h1, h2, h3, li {
  color: rgb(180, 180, 180);
  text-align: left;
  margin: 0;
}

h1 {
  font-size: 30px;
  font-weight: 600;
}
h2, li {
  font-size: 20px;
  font-weight: 500;
}
h3 {
  font-size: 16px;
  font-weight: 500;
}
ul {
  margin: 8px 0px;
}

.border-wrapper {
  width: 80%;
  height: fit-content;
  margin-top: 20px;
  margin-bottom: 20px;

  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  background: var(--table-wrapper-border);
}
.text-page {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: rgba(34, 32, 34, 0.7);
  border-radius: 10px;
  overflow: hidden;
}

.text-content {
  padding: 20px 30px;
}
.text-content, .t-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}


.spacing-top {
  margin-top: 6px;
}
.spacing-bottom {
  margin-bottom: 6px;
}

