body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-image: url('https://alvibeauty.fra1.cdn.digitaloceanspaces.com/background.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #242945;
}

header {
  /* padding: 2vw 2vw; */
  text-align: center;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 5vh;

  h1 {
    width: 75vw;
    text-align: center;
    font-size: 5vw;
    margin-block: 0;
  }

  img {
    width: 25vw;
    height: 25vw;
    rotate: -25deg;
  }
}

.wrapper {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  /* height: 50vw; */
  padding: 0;
  margin-top: 5vh;
  position: relative;

}

.hand {
  width: 30vw;
  height: 60vw;
  rotate: 50deg;
  margin-left: -5vw;
  object-fit: fill;
  z-index: 0;
}

.steps {
  padding: 0 1vw;
  width: 60vw;
  font-size: 2vw;
  z-index: 1;
}

.steps ol {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  width: 100%;
}

.steps li {
  counter-increment: step;
  margin-bottom: 3vw;
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 49%;
  font-size: 3vw;
}

.steps li span {
  border: 1px solid #000;
  border-radius: 50%;
  padding: 1vw;
  min-width: 3vw;
  min-height: 3vw;
  max-width: 3vw;
  max-height: 3vw;
  margin-right: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps p {
  margin: 0;
}

.steps a {
  display: block;
  width: 31vw;
  height: 9vw;
  background: url('https://alvibeauty.fra1.cdn.digitaloceanspaces.com/app-store.webp');
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
}

.promo-note {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  font-size: 2vw;
  margin-top: 20px !important;
  padding: 10px !important;
}

@media (max-width: 960px) {
  .steps {
    width: 60vw;
  }

  .hand {
    width: 40vw;
    height: 80vw;
    rotate: 50deg;
    margin-left: -10%;
  }

  .steps li {
    width: 100%;
    font-size: 24px;
  }

  .steps li span {
    min-width: 25px;
    min-height: 25px
  }

  .steps a {
    width: 171px;
    height: 50px;
  }

  header h1 {
    font-size: 35px;
  }

  .promo-note {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .wrapper {
    margin-top: 10vh;
  }

  header h1 {
    font-size: 24px;
  }

  .steps {
    width: 60vw;
  }

  .hand {
    width: 50vw;
    height: 100vw;
    rotate: 50deg;
    margin-left: -20%;
  }

  .steps li {
    width: 100%;
    font-size: 18px;
  }

  .steps li span {
    min-width: 25px;
    min-height: 25px
  }

  .steps a {
    width: 120px;
    height: 35px;
  }

  .promo-note {
    font-size: 18px;
    margin-top: 20px;
  }
}