html, body {
  font-size: 18px;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #333;
}

main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-image: url(/assets/img/bg/walk-to-the-source.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

article {
  /* backdrop-filter: blur(3px); */
  height: 100vh;
  flex: 1;
  color: white;
  width: 100%;
  padding: 12%;
  box-sizing: border-box;
  text-align: center;
  background-color: #333B;
}

article b, article a {
  padding: 3px 6px;
  color: #181818;
  background-color: wheat;
}

article figure {
  position: relative;
  display: inline-flex;
  margin: 0;
}

img.id {
  max-height: 39vh;
  border: 3px solid wheat;
  border-radius: 999px;
  backdrop-filter: blur(3px);
}

img.stamp {
  position: absolute;
  bottom: 0;
  right: 50%;
  max-height: 18%;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(50%, 50%);
}

a.souvereign {
  margin: 0 1rem;
  padding: .5rem 1rem;
}

h1 {
  margin: 2rem 0 1rem;
  font-size: 3rem;
  color: wheat;
}

h2 {
  margin: 0 0 2rem;
  font-size: 1.2rem;
}

h2 a.souvereign {
  border-radius: 3px;
  border: 3px solid wheat;
  background-color: wheat;
  position: relative;
  /* Button background color */
  color: #333;
  /* Make text transparent */
  position: relative;
  border: none;
  cursor: pointer;
}

.debt-display {
  color: #333;
  padding: .5rem;
  position: sticky;
  bottom: 0;
  color: wheat;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-direction: column;
  background: #0009;
}
.debt-display #debt {
  font-size: 3rem;
}