body {
  background-color: rgb(240, 240, 240);
  height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  header {
    background-image: url(./img/bg.jpg);
    background-size: 100% 100%;
    width: 1920px;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    .logo-wrap {
      width: 142px;
      height: 44px;
      display: flex;
      justify-content: center;
      align-items: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .desc {
      /* background-color: deeppink; */
      padding: 26px 0 100px 0;
      color: #ffffff;
      font-size: 22px;
      font-weight: 700;
    }
  }

  article {
    /* background-color: yellow; */
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    .container {
      /* background-color: chartreuse; */
      width: 1200px;
      position: absolute;
      top: -160px;
      .content {
        background-color: #fff;
        border-radius: 20px;
        padding: 60px;
        color: #060615;
        div:first-of-type {
          /* background-color: pink; */
          padding-bottom: 36px;
          font-size: 36px;
          font-weight: 700;
          display: flex;
          justify-content: center;
          align-items: center;
        }
        div:nth-of-type(2),
        div:nth-of-type(3) {
          /* background-color: yellowgreen; */
          text-indent: 2rem;
          font-size: 18px;
          line-height: 36px;
          font-weight: 400;
          display: flex;
          justify-content: center;
          align-items: center;
        }
      }
      .img-wrap {
        /* background-color: deeppink; */
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        img {
          width: 280px;
          height: 160px;
          /* width: 190px;
          height: 120px; */
        }
      }
    }
  }

  footer {
    background-color: #000000;
    padding: 15px 0;
    color: #7d7d7d;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
