body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  position: sticky;
  top:0;
  z-index: 5;
    margin-bottom: 50px;
  background-color: #000000ba;
  padding: 20px;
  color: white;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

main {
  flex: 1;
  padding: 20px;
}

.artist-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.artist-card {
  width: 200px;
  border-radius: 10px;
  background-color: #f8f8f8;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s;
}

.artist-card:hover {
  transform: scale(1.05);
}

.artist-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.artist-card h3 {
  margin: 10px 0;
  font-size: 18px;
}

footer {
  background-color: #000000ba;
  color: white;
  text-align: center;
  padding: 10px;
}
.menu {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 20px;
}

.menu-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.menu-link:hover {
  background-color: white;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.menu-link:active {
  transform: scale(0.95);
}

.logout-btn {
  display: inline-block;
  padding: 6px 12px;
  background-color: #ff4d4d;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-left: 10px;
}

.logout-btn:hover {
  background-color: #e60000;
}
.user-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
  color: white;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 30px;
}

.user-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.greeting {
  font-weight: bold;
  color: white;
}
