* {
  margin: 0;
  padding: 0;
  font-family: 'Albert sans',sans-serif;
  text-decoration: none; 
}
body{
  background-color: #0e0e0e;
  color: #fff;
}
/* HEADER */
header{
  height: 100vh;

  margin: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header h1{
  font-size: 170px;
  font-weight: 900;
}
/* FAVOURITE ARTIST */
.fav-title{
  font-size: 150px;
  margin: 10px;
}
.fav-artists{
  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 20px;
  margin-bottom: 100px;
}
.artists-row{
  width: 100%;

  margin-bottom: 20px;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.card{
  width: 220px;
  height: fit-content;

  border-radius: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition: all ease-in 0.5s;
}
.card:hover{
  cursor: pointer;
  background-color: #44444442;
}
.card img{
  width: 150px;
  height: 150px;
  border-radius: 100%;
  border: 1px solid #fff;
  object-fit: cover;

  margin-bottom: 50px;
  margin-top: 20px;
}
.card h3{
  text-align: center;
  font-size: 15px;
  font-weight: 900;

  margin-bottom: 20px;
}
.card a button{
  color: #fff;
  font-weight: 700;
  background-color: #0e0e0e;
  border-radius: 20px;
  border: 2px solid #fff;

  padding: 10px;
  margin-bottom: 20px;

  transition: all ease-in 0.2s;
}
.card a button:hover{
  cursor: pointer;
  color: #0e0e0e;
  background-color: #fff;
}

/* FAVOURITE SONGS */
.fav-songs{
  margin: 10px;
  padding: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.song-row{
  width: 100%;
  height: fit-content;

  margin: 20px;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.song-card{
  width: 270px;
  height: fit-content;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.song-card img{
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;

  margin-bottom: 20px;
}
.song-card h3{
  text-align: center;
  font-size: 15px;
  font-weight: 600;

  margin-bottom: 20px;
}
.song-card a button{
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  background-color: #0e0e0e;
  border-radius: 20px;
  border: 1px solid #fff;

  padding: 10px;
  margin-top: 10px;
  margin-bottom: 30px;

  transition: all ease-in 0.2s;
}
.song-card a button:hover{
  cursor: pointer;
  color: #0e0e0e;
  background-color: #fff;

}