* {
  box-sizing: inherit;
}

html, body, #root {
  height: 100%;
  margin: 0px;
}

html {
  box-sizing: border-box;
  display: block;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: break-word;
  background: white;
  color: black;
}

.container {
  max-width: 740px;
  margin: 0 auto;
}

.content {
  padding: 0 20px;
}

.title {
  text-align: center;
  font-size: 4em;
  letter-spacing: 0.05rem;
}

.sub-title {
  font-size: 1.6em;
}

.example {
  text-align: center;
  background-color: #eee;
  margin: 2em 0;
  padding: 5px 0;
}

.footer {
  margin-top: 5rem;
  background: black;
  color: #aaa;
}

.footer-container {
  max-width: 740px;
  padding: 10px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

ul {
  margin-left: 0px;
  padding-left: 25px;
}

a, code {
  color: #0076ff;
  text-decoration: none;
}

b > code {
  color: black;
}

.warning, .warning-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.warning {
  height: 50px;
  max-width: 90%;
  gap: 5px;
  padding: 6px;
  box-sizing: border-box;

  border: 2px solid red;

  > .icon {
    height: 100%;
    aspect-ratio: 1;

    > svg {
      width: 100%;
      height: 100%;
    }
  }
}
