.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: auto;
  gap: 1rem;
}

.hero__title_container {
  display: flex;

  position: relative;

  justify-content: center;
  align-items: center;
}

.hero__title_img_bg {
  background: url("/img/balle.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 17rem;
  width: 17rem;
}

.hero__title {
  position: absolute;
  top: 55px;
  left: 30px;

  font-size: var(--size-2xl);
  font-weight: 500;
  text-align: center;
}

.hero__title span {
  font-weight: 800;
  font-size: var(--size-3xl);
}

.hero__image {
  width: 280px;
  border-radius: 25px;
  box-shadow: 0px 25px 30px rgba(0, 0, 0, 0.5);
}

/* Mobile first */
/* xs */
/* @media (min-width: 475px) {} */

/* sm */
@media (min-width: 640px) {
  .hero__title_img_bg {
    height: 20rem;
    width: 20rem;
  }

  .hero__title {
    top: 60px;
    left: 35px;
    font-size: var(--size-3xl);
  }

  .hero__title span {
    font-size: var(--size-4xl);
  }
  .hero__image {
    width: 350px;
  }
}

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {
  .hero__title_img_bg {
    height: 26rem;
    width: 26rem;
  }

  .hero__title {
    top: 70px;
    left: 40px;
    font-size: var(--size-4xl);
  }

  .hero__title span {
    font-size: var(--size-5xl);
  }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */
