
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    background-color: white;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    width: 100vw;
    font-family: "Inter", Sans-serif;
    font-size: 20px;
    margin: 0;
  }

  h3 {
    text-align: center;
    font-size: 140%;
    font-weight: 700;
  }

  .box img {

max-width: 150px;
  }

  img{
    max-width: 300px;
  }

  p {
    max-width: 500px;
    align-items: center;
    text-align: center;
  }
  a {
    max-height: 40px;

    height: 40px;
  }

  footer {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    margin: 1rem;
    max-width: 100%;

    color: #0720f4;
  }

  .phones {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 4rem 0;
    gap: 1rem;
  }

  .phones > * {
    color: #0720f4;
  }


  .box {
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0720f4;
    gap: 1rem;
  }


  

  .app-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .app-btns > a > img {
    height: 100%;
    width: 100%;
    max-width: 140px;
  }

  .steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  @media screen and (max-width: 600px) {
    footer,
    .box,
    .phones {
      padding: 0 1rem;
    }
    .steps {
      flex-direction: column;
    }
  }