.thanks
{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 100px 10px;
}
.thanks .container
{
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img
{
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p
{
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 767.98px)
{
  .thanks p
  {
    font-size: 14px;
  }
}

.docs
{
  word-break: break-word;
  padding: 50px 10px;
}
.docs h1
{
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}
.docs h2
{
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 22px;
  color: #2980b9;
}
.docs ul {
  padding-left: 20px;
}
.docs li,
.docs p
{
  color: inherit;
  line-height: 1.929;
}
.docs a
{
  text-decoration: none !important;
  transition: 0.3s;
  color: #2980b9;
}
.docs a:hover
{
  color: #000;
}