html {
  font-size: 14px;
  font-family: monospace; 
}

body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: auto;
  padding-block: 6rem;
  width: 85lvw;
  max-width: 750px;
  line-height: 1.6;
}

main {
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
}

a {
  text-decoration: none;
  color: #006efb;
}

a:hover {
  text-decoration: underline;
}

p {
  padding-bottom: 1rem;
}

ul {
  list-style-type: '- ';
  padding-inline-start: 3rem;
}

li {
  padding-bottom: .5rem;
}

article img {
  display: flex;
  padding-block: 1rem;
  margin: auto;
  max-width: 85lvw;
}

article li {
  padding-bottom: 1.2rem;
}

article :not(pre) > code {
  background-color: rgba(202, 201, 198, 0.418);
  padding-inline: 10px;
  padding-block: 2px;
  border-radius: .25rem;
  white-space: nowrap;
}

article pre {
  font-size: .95em;
  line-height: 1.2em;
  padding-bottom: .5rem;
  overflow: auto;
}

article hr {
  border: none;
  text-align: center;
}

article hr:before {
  content: "//////////";
}

.back {
  color: black;
  display: flex;
}

#mobile-wallet {
  display: none;
}

table {
  display: table;
  border-collapse: collapse;
  width: 100%;
}
  
  
th, td {
  border: 1px solid #0000001f;
	border-radius: 3px;
	padding: 5px;
}

@media (max-width: 700px) {
  html {
    font-size: 13px;
  }
  #mobile-wallet{
    display: list-item;
  }  

  table {
    display: block;
    overflow: auto;
  }
  
  #wallet {
    display: none;
  }
}
