body {
  background-color: #0c1035;
  font-family: 'Verdana', sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding: 20px;
  border-bottom: 2px solid white;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

.section {
  width: 45%;
  margin: 20px 0;
}

.section img {
  width: 100px;
  height: 100px;
  margin: 5px;
  transition: transform 0.3s ease;
}

.section img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px #fff);
}

.profile-pic {
  width: 150px;
  height: 150px;
  background-color: #333;
  margin-bottom: 10px;
  border: 3px solid white;
}

.socials img {
  width: 40px;
  height: 40px;
  margin: 5px;
}

.fav-artists img {
  width: 80px;
  height: 80px;
  margin: 10px 0;
  border: 2px solid white;
}

a {
  text-decoration: none;
  color: #00ffff;
}

h2 {
  font-size: 1.5em;
  border-bottom:
