@font-face {
    font-family: "Aeonik";
    font-style: normal;
    src: url("fonts/Aeonik-Regular.otf") format("opentype");
  }

  @font-face {
    font-family: "Aeonik";
    font-style: normal;
    font-weight: 700;
    src: url("fonts/Aeonik-Black.otf") format("opentype");
  }
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    background-color: #19a9e1;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

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

  h3 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
  }

  img {
    max-width: 400px;
  }

  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%;
  }

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

  .box {
    --mask: radial-gradient(
          33.54px at 50% calc(100% - 45px),
          #000 99%,
          #0000 101%
        )
        calc(50% - 60px) 0/120px 100%,
      radial-gradient(
          33.54px at 50% calc(100% + 15px),
          #0000 99%,
          #000 101%
        )
        50% calc(100% - 30px) / 120px 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    height: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    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;
    }
  }