@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  color: #090611;
  line-height: 120%;
}
html {
  background-color: #f5f5f5;
  padding: 16px;
}
body {
  max-width: 1131px;
  width: 100%;
  margin: 20px auto;
}
.container {
  background-color: #fff;
  padding: 64px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
header {
  max-width: 188px;
  margin-bottom: 40px;
  @media (max-width: 375px) {
    margin-bottom: 24px;
  }
}
img {
  width: 100%;
  height: auto;
}
h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
}
section {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
h3 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 0;
}
a {
  color: #7630f7;
  text-decoration: none;
}
p {
  line-height: 150%;
  margin-top: 0;
  margin-bottom: 20px;
}
.bold {
  font-weight: 600;
}
.heading {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
table {
  text-align: left;
  display: inline-block;
  border-collapse: collapse;
  overflow-y: scroll;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.table-number {
  width: 10px;
}
ul > li {
  margin-bottom: 10px;
  list-style-type: "- ";
}
ol > li {
  margin-bottom: 10px;
  list-style-type: decimal;
}
th,
td {
  border: 1px solid #000;
  padding: 5px;
  vertical-align: top;
  font-size: 14px;
  a {
    font-size: 14px;
  }
  @media (max-width: 768px) {
    padding: 2;
    font-size: 12px;
    a {
      font-size: 12px;
    }
  }
}
th {
  font-weight: 500;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 32px;
  }
  h3 {
    font-size: 18px;
  }
  .container {
    padding: 32px;
  }
}
@media (max-width: 375px) {
  * {
    font-size: 14px;
  }
  h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  h3 {
    font-size: 18px;
  }
  header {
    max-width: 144px;
  }
  .container {
    padding: 16px;
    border-radius: 8px;
  }
}
