html, body{
font-family: sans-serif;
font-size: 22px;
margin:0;
padding:0;
}

p {
  margin: 0 0 16 0;
}

.artist, .artist-all  {
  font-weight: 500;
  font-size: 24px;
}

.artist-all {
  margin: 0 0 20 0;
}

a {
  text-decoration: none;
  color: grey;
  cursor: crosshair;
}

a:hover {
  color:  blue;
}


/* content */


#website {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.w-item {
  width: 30%;
}


#content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.c-item {
  text-align: center;
}

#allstars-box {
  display: flex;
  justify-content: flex-end;
  padding-right: 55px;
}

#allstars {
  transform: rotate(-3deg);
}


footer{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

#social:hover {
  fill: #206CF9;
  transition: 0.1s ;
}

/* mobile */


@media (max-width: 1300px) {

  p {
  font-size: 19px;
  margin: 0 0 12 0;
  }

  .artist, .artist-all  {
    font-size: 22px;
  }

  .artist-all {
    margin: 0 0 16 0;
  }

  #website{
    padding: 15px;
    display: flex;
    flex-direction: column ;
    justify-content: center;
    gap:50px;
  }

  .w-item {
    width: 100%;
  }

  header{
    display: flex;
    justify-content: center;
  }

  #content{
    gap: 30px;
  }

  #allstars-box {
    justify-content: center;
    padding-right: 0px;
  }

 #allstars {
   transform: rotate(-7deg);
   padding-bottom: 5px;
 }

  footer{
    justify-content: center;
  }

 }
