body {
  background-color: #f2efe5;
  color: rgb(79, 79, 79);
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto,
    "Helvetica Neue", helvetica, arial, sans-serif;
  box-sizing: border-box;
  padding-bottom: 3em;
}

h1 {
  font-size: 24px;
  font-weight: 500;
}

.wrapper {
  display: flex;
  max-width: 960px;
  margin-top: 3em;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
}

.tag {
  padding: 4px;
  font-weight: 500;
  color: #29339b;
  background-color: #98a0f3;
  border-radius: 4px;
  text-decoration: none;
}

.tag:hover {
  background-color: #29339b;
  color: #fff;
}

code {
  background: #fff;
  border: 1px solid rgb(79, 79, 79);
  padding: 4px;
  border-radius: 4px;
}

.steps {
  display: flex;
  flex-direction: column;
  counter-reset: steps;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: steps;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.steps li + li {
  margin-top: 24px;
}

.steps li .description {
  flex: 1 1 auto;
}

.steps li .number {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  font-weight: 500;
  flex: 0 0 auto;
  border: 2px solid rgb(79, 79, 79);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.steps .number {
  margin-right: 4px;
}

.description.description {
  padding: 0;
}

.steps .content {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

hr {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}

hr:before {
  content: "";
  display: block;
  background-color: #c9c2ab;
  position: absolute;
  top: calc(50% - 0.5px);
  height: 1px;
  width: 360px;
}

hr:after {
  content: "❦";
  font-size: 28px;
  color: #98927f;
  background-color: #f2efe5;
  z-index: 10;
}

video {
  object-fit: cover;
  max-width: 400px;
  flex: 0 1 auto;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgb(79, 79, 79);
  background: white;
  padding: 1px;
  margin-top: 16px;
  margin-bottom: 16px;
  min-width: 200px;
  width: 80%;
}

.context {
  color: #98927f;
  font-size: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 100px;
}

.footer > a {
  text-decoration: none;
  color: #ccc;
}

.footer > a :hover {
  text-decoration: underline;
  color: #ccc;
}

.footer > p {
  padding: 0;
  margin: 0;
  color: #ccc;
}
