* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #111;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.menu-toggle {
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
}

nav {
  position: fixed;
  top: 0;
  right: -250px;
  width: 200px;
  height: 100%;
  background-color: #111;
  padding-top: 80px;
  transition: 0.3s;
  z-index: 1000;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

nav a {
  display: block;
  color: white;
  padding: 16px;
  text-decoration: none;
  font-size: 18px;
}

nav a:hover {
  background-color: #333;
}

.open {
  right: 0;
}

main {
  flex: 1;
  padding: 40px 20px;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.artist-card {
  display: block;
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: 0.2s;
  text-decoration: none;
  color: #fff;
}

.artist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.08);
}

.image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.artist-card:hover .artist-photo {
  transform: scale(1.05);
}

.artist-info {
  padding: 16px;
}

.artist-name {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.region,
.birth {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 6px;
}

.links {
  margin-top: 10px;
}

.links a,
.links span {
  font-size: 0.85rem;
  color: #1da1f2;
  text-decoration: none;
  margin-right: 10px;
}

.links a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  background-color: #111;
  color: #ccc;
}