Changed around line 1
+ :root {
+ --primary-color: #ff6f61;
+ --secondary-color: #6b5b95;
+ --background-color: #f4f4f4;
+ --text-color: #333;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ header {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 20px;
+ text-align: center;
+ }
+
+ header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+ }
+
+ header p {
+ margin: 10px 0 0;
+ font-size: 1.2rem;
+ }
+
+ main {
+ padding: 20px;
+ }
+
+ .grid-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
+ gap: 20px;
+ }
+
+ .artist-card {
+ background-color: white;
+ border-radius: 10px;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ overflow: hidden;
+ text-align: center;
+ transition: transform 0.3s ease;
+ }
+
+ .artist-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .artist-card img {
+ width: 100%;
+ height: auto;
+ border-bottom: 2px solid var(--primary-color);
+ }
+
+ .artist-card h2 {
+ margin: 10px 0;
+ font-size: 1.2rem;
+ color: var(--secondary-color);
+ }
+
+ footer {
+ background-color: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 10px;
+ margin-top: 20px;
+ }
+
+ footer p {
+ margin: 0;
+ font-size: 1rem;
+ }
+
+ @media (max-width: 768px) {
+ .grid-container {
+ grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
+ }
+
+ header h1 {
+ font-size: 2rem;
+ }
+
+ header p {
+ font-size: 1rem;
+ }
+
+ .artist-card h2 {
+ font-size: 1rem;
+ }
+ }