.home_container {
  position: relative;
  background-image: url("../assets/imgs/bg_home.webp");
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.choice_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.my_choice_container {
  position: relative;
  align-self: flex-end;
  margin: 20px 20px 0 0;
  z-index: 2;
}

.im_musician_container {
  position: relative;
  align-self: flex-end;
  margin: 20px 20px 0 0;
  z-index: 2;
}

.text-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero_container h1 {
  font-size: 100px;
  margin: 0;
}

.circle_profile {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f805fe, #548cdd);
  position: absolute;
  top: -10%;
  left: 82%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle_profile::before {
  content: "";
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: black;
  position: absolute;
  top: 20;
  left: 20;
}

.inner_circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.inner_circle::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 20;
  left: 20;
}

.my_choice_container h2 {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px 40px;
  border-radius: 50px;
  color: #333;
  font-size: 30px;
  display: inline-block;
  margin: 0;
  width: 420px;
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.im_musician_container h2 {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px 10px;
  border-radius: 50px;
  color: #333;
  font-size: 30px;
  display: inline-block;
  margin: 0;
  width: 440px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  word-wrap: break-word;  /* Permet au texte de se couper à la ligne */
  white-space: normal;
  padding-right: 50px;
}

.offset-text {
  position: absolute;
  top: 5px;
  right: 20px;
}

@media (max-width: 1000px) {
  .im_musician_container h2 {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px 10px;
    border-radius: 50px;
    color: #333;
    font-size: 30px;
    display: inline-block;
    margin: 0;
    width: 420px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    word-wrap: break-word;  /* Permet au texte de se couper à la ligne */
    white-space: normal;
    padding-right: 50px
  }


}

@media (max-width: 600px) {
  .circle_profile {
    width: 60px;
    height: 60px;
    top: -5%;
    left: 75%;
  }

  .circle_profile::before {
    width: 85%;
    height: 85%;
    top: 15;
    left: 15;
  }

  .inner_circle {
    width: 20px;
    height: 20px;
  }

  .inner_circle::before {
    width: 70%;
    height: 70%;
    top: 15;
    left: 15;
  }

  .my_choice_container h2 {
    font-size: 20px;
    width: 250px;
    height: 50px;
    justify-content: center;
    margin-left: 35px;
  }

  .im_musician_container h2 {
    font-size: 20px;
    width: 250px;
    height: 50px;
    padding: 10px 50px;
    margin-left: 35px;
  }

  .home_container {
    height: 60vh;
  }
}
