:host {
  display: block;
}

.box-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 36px 16px;
}

.box {
  width: 150px;
  height: 150px;
  padding: 10px;
  color: #ffffff;
  background-color: #006a6a;
  line-height: 150px;
  text-align: center;
  margin-bottom: 10px;
  position: relative;

  & + .box {
    margin-left: 30px;
  }

  &::after {
    color: #6ff7f6;
    line-height: 2px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.25px;
    position: absolute;
    top: 105px;
    left: 30px;
  }
}

.rounded-x-sm::after {
  content: 'border-radius: 4px;';
}

.rounded-sm::after {
  content: 'border-radius: 8px;';
}

.rounded-md::after {
  content: 'border-radius: 12px;';
}

.rounded-lg::after {
  content: 'border-radius: 16px;';
}

.rounded-x-lg::after {
  content: 'border-radius: 28px;';
}

.rounded-full::after {
  content: 'border-radius: 50%;';
}
