/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: #333;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header Styles */
.header {
  background-color: #202020;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

.header h1 {
  margin: 0;
  font-size: 2.5em;
}

.header p {
  font-size: 1.2em;
}

/* Navigation Styles */
nav {
  background-color: #333;
  color: #fff;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  padding: 0 20px;
}

nav ul li a {
  color: #fff;
  font-size: 1.1em;
}

/* Content Styles */
.content {
  padding: 30px 20px;
}

/* Artist Section Styles */
.artist-section {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.artist {
  margin-bottom: 20px;
}

.artist h3 {
  color: #333;
  margin-bottom: 5px;
}

.artist p {
  color: #666;
  font-size: 0.9em;
  line-height: 1.6;
}

/* Footer Styles */
.footer {
  background-color: #202020;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 30px;
}

.footer p {
  margin: 0;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  nav ul li {
    padding: 10px 0;
  }
}

/* Add any additional styles as needed */
