.container {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.row {
  background-color: var(--main-color-2);
  width: 100%;
  align-items: center;
  display: flex;

  & > * {
    flex-grow: 1;
    flex-basis: 1px;

    &:not(:last-child) {
      margin-right: calc(8 * var(--xxs-vw));
    }
  }

  margin: calc(5 * var(--xxs-vh)) 0;
}

.rowItem {
  border-radius: 10px;
  background-color: rgba(254, 91, 59, 0.22);
  height: 10vh;
  color: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
}
