.Wrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--st-content-max-width);
  height: auto;
  padding: var(--sl-spacing-large);
  background-color: var(--st-content-background);
  display: flex;
}

.Column {
  display: flex;
  flex-direction: column;
}
.Column > :not(:first-child) {
  margin-top: var(--sl-spacing-medium);
}

.H4 {
  font-size: var(--sl-font-size-medium);
  font-weight: var(--sl-font-weight-semibold);
  margin: 0;
}

.Row {
  display: flex;
  margin-top: 0;
}
.Row > :not(:first-child) {
  margin-left: var(--sl-spacing-large);
}
.Row > * {
  flex: 1;
}

.Column {
  align-items: center;
}

h2 {
  text-align: center;
}

h4 {
  text-align: center;
  margin: 0;
}

.Row {
  display: flex;
  justify-content: space-around;
  box-sizing: border-box;
  width: 100%;
}

sl-button {
  width: 40%;
  min-width: 70px;
}