* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  width: 100vw;
  background: #101010;
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
}
body,
.wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.btn {
  font-weight: 600;
  transition: all 200ms ease;
  padding-inline: 16px;
  padding-block: 8px;
  border-style: none;
  border-radius: 6px;
  color: black;
  border: 1px solid rgb(39 39 42);
  cursor: pointer;
  background-color: rgb(24 24 27);
  font-size: 16px;
  text-decoration: none;
}
.btn:hover {
  background-color: rgb(39 39 42);
}
.btn:active {
  background-color: rgb(63 63 70);
}
.btn-success {
  color: rgb(34 197 94);
}
.btn-warning {
  color: rgb(234 179 8);
}
.text {
  color: rgb(161, 161, 170);
  font-size: 14px;
  margin-bottom: 24px;
}
h1 {
  color: white;
}
.docs {
  color: rgb(161, 161, 170);
}
.docs:visited {
  color: rgb(91, 91, 91);
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background-color: rgb(22, 22, 22);
  border-radius: 6px;
  padding-inline: 26px;
  padding-block: 8px;
}
.container .text {
  margin-bottom: 0px;
  font-weight: 600;
}
.global-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.text-xs {
  color: rgb(161, 161, 170);
  font-size: 12px;
}
