.component {
  background-color: #ffffff;
  > .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    > .leading {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    > .center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }
}
