* {
    padding: 0;
    margin: 0;
    outline: 0;
    color: #444;
    box-sizing: border-box;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
  }
  h1 {
    font-size: 50px;
    line-height: 60px;
  }
  span {
    display: block;
    font-size: 18px;
    line-height: 30px;
  }
  .container {
    width: 80%;
    max-width: 1600px;
    margin: auto;
  }
  .grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    grid-gap: 50px;
  }
  .colmun-left {
    text-align: left;
  }
  .colmun-right {
    text-align: right;
  }
  .px-spc-b-20 {
    padding-bottom: 20px;
  }
  button.go-home {
    padding: 5px 20px;
    background: #ffa000;
    border: transparent;
    border-radius: 2px;
    box-shadow: 0 0 2px rgb(0 0 0 / 30%);
    cursor: pointer;
    margin: 20px 0;
    color: #fff;
  }
  button.go-home i {
    color: #fff;
  }
  img {
    display: block;
    width: 100%;
  }