* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;

}

:root {
  --bg-color:#080808;
  --second-bg-color:#131313;
  --third-bg-color:#ffbf00;
  --text-color:#ffffff;
  --main-color:#ffcc33;
}

html {
  font-family: "Poppins", sans-serif;
}

section {
  border-bottom: var(--main-color);
}

.image-background {
  background-image:url(images/asset4.jpg);
  height: 135vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  text-align: center;
}

.image-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(190deg, rgba(21, 22, 24, 0.2) 0%, #151618 100%);
  background-color: rgba(15, 17, 21, 0.2);
  z-index: -1;
}


.artist-name h1 {
  font-size: 4rem;
  color: var(--text-color);
  padding-top: 29%;
}

.artist-name  h1 a {
  color: var(--text-color)
}

.tag {
  font-size: 1rem;
   font-family: 'Trebuchet MS', sans-serif;
  text-align: center;
  color: var(--text-color);
  padding-top: .5rem;
}

.tag span {
  text-transform: uppercase;
  font-size: .9rem;
  font-family: 'Trebuchet MS', sans-serif;
  line-height: 2;
  letter-spacing: 2px;
}
hr {
  border: 2px solid var(--main-color);
  width: 25%;
  margin: 0rem auto;
}
.single h2 {
  font-size: 2em;
  color: var(--text-color);
  padding: 1rem 0;

}

.single-name {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--main-color);
  padding: 1rem 0;
  letter-spacing: 2px;
}

.single a {
  color: var(--bg-color);
  padding: .5rem 2rem;
  background: var(--text-color);
  font-size: 1rem;
  font-weight: 300;
  border-radius: 2rem;
  border: .1rem solid var(--bg-color);

}

.single a:hover {
  background: transparent;
  color: var(--text-color);
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: .6rem 2rem;
  text-decoration: none;
  background: var(--text-color);
  box-shadow: 0 0 25px var(--second-bg-color);
  border-radius: .2rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--bg-color);
  border: 2px solid transparent;
  letter-spacing: 0.1rem;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px var(--main-color);
}

.btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 6rem;

}

.btn-group a:nth-of-type(2) {
  background-color: black;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  box-shadow: 0 0 25px transparent;

}
.btn-group a:nth-of-type(2):hover {
  box-shadow: 0 0 25px var(--main-color);
  background-color: var(--main-color);
  color: black;
}



footer {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 40px 0;
  background-color: var(--second-bg-color);
}

footer .social {
  text-align: center;
  padding-bottom: 25px;
  color: var(--main-color);

}
footer .social a {
  font-size:  25px;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 10px;
  transition: 0.3s ease-in-out;
}

footer .social a:hover {
  transform:  scale(1.2) translateY(-10px);
  background-color: var(--main-color);
  color: black;
  box-shadow: 0 0 25px var(--main-color)
}

footer ul {
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

footer ul li a {
  color: white;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
footer ul li a:hover{
  border-bottom: 3px solid var(--main-color);
}
footer ul li {
  display: inline-block;
  padding: 0 15px;
}

footer .copyright {
  margin-top: 50px;
  text-align: center;
  font-size: 16px;
  color: var(--text-color);
}



@media screen and (max-width: 620px){

  .artist-name {
    padding-top: 20rem;
  }
  .artist-name h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .single {
    padding: 1rem 0;
    margin-top: 2rem;
  }

  .single h2 {
    font-size: 1.5rem;
  }
  .tag span {
    font-size: .8rem;
  }

  .single a {
    border-radius: 1rem;
    padding: .5rem 2rem;
  }
  footer ul li a {
  color: white;
  font-size: 15px;
  padding: 15px 0px;
}
 footer .social a {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  margin-top: 1rem;
  
 }

 .btn-group {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 2rem;
  margin: 4rem auto;
 }

 .btn-group .btn {
  padding: .3rem 1rem;
 }
  
}

@media screen and (min-width: 622px) and (max-width:930px){
   .artist-name {
    padding-top: 13rem;
  }
  .artist-name h1 {
    font-size: 4rem;
    line-height: 1;
  }

  .single {
    padding: 1rem 0;
    margin-top: 2rem;
  }

  .single h2 {
    font-size: 1.5rem;
  }
  .tag span {
    font-size: .8rem;
  }

  .single a {
    border-radius: 1rem;
    padding: .5rem 2rem;
  }
  footer ul li a {
  color: white;
  font-size: 15px;
  padding: 15px 0px;
}
 footer .social a {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  margin-top: 1rem;
  
 }

 .btn-group {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 2rem;
  margin: 4rem auto;
 }

 .btn-group .btn {
  padding: .5rem 1.5rem;
 }
}

@media screen and (min-width: 931px) and (max-width:1290px){
  .artist-name {
    padding-top: 10rem;
  }
  
}