.artist-single .artist-view{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.artist-single .artist-view img {
  width: 200px;
  height: auto;
  border-radius: 50%;
}

.artist-single .artist-view h1 {
  position: absolute;
  top: -27%;
}

.artist-single .artist-view .socials-links {
  position: absolute;
  bottom: -5%;
  right: 22%;
  font-size: 1.7em;
  display: flex;
  gap: .4em;
}


.artist-single .subtitle {
  text-transform: uppercase;
  color: rgb(202, 200, 200);
  font-size: 1.2em; 
}

.artist-single .about p {
  max-height: 250px;
  overflow-y: auto;
  text-align: justify;
}

.artist-single .calender {
  margin-bottom: 1em;

}

@media (min-width: 992px) {
  .artist-single .artist-view {
    margin-top: 2em;
  }
  .artist-single .artist-view img {
    width: 300px;
  }

  .artist-single .artist-view h1 {
    top: -21%;
  }

  .artist-single .artist-view .socials-links {
    bottom: 29%;
    right: 19%;

  }
  .artist-single .artist-info {
    display: flex;
  }

  .artist-single .artist-view {
    width: 40%;
  }

  .artist-single .about {
    width: 60%;
  }

  .artist-single .about p {
    min-height: 400px;
    max-height: 400px;
    width: 100%;
  }
}