body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #121212;
  color: white;
}


main {
  padding: 50px 0;
}

.atr h2{
    margin-left:7%;
}
.atr button{
    margin-left:7%;
}
.artist-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  color: white;
  text-transform: uppercase;
  position: relative;
  height: 200px;
  border-radius: 10px;
  margin: 20px auto;
  width: 80%;
}

.artist-section img {
 width:200px;
 height:auto;
  object-fit: cover;
  border-radius: 10px;
  margin-left: 20px; /* Push image to the right */
}

.artist-section .info {
  text-align: left;
  flex: 1; /* Makes text take up remaining space */
}

.artist-section h1 {
  font-size: 28px;
  margin: 0;
}

.artist-section p {
  font-size: 16px;
  opacity: 0.8;
}

button {
  background: white;
  color: black;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  border-radius: 5px;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #121212;
    color: white;
}
.songsButton{
    padding: 8px 16px;
}
nav {
    display: flex;
    justify-content: space-between;
    padding: 15px 50px;
    background: #000;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
    color: #FF5733;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

main {
    padding: 50px 0;
}

.artist-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px;
    color: white;
    text-transform: uppercase;
    position: relative;
    height: 200px;
    border-radius: 10px;
    margin: 20px auto;
    width: 80%;
}

.artist-section img {
    height: 160px;
    width: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-left: 20px;
}

.artist-section .info {
    text-align: left;
    flex: 1;
}

.artist-section h1 {
    font-size: 28px;
    margin: 0;
}

.artist-section p {
    font-size: 16px;
    opacity: 0.8;
}

button {
    background: white;
    color: black;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 5px;
}
button:hover {
  background: #ddd;
}

button svg {
  width: 16px;
  height: 16px;
  fill: black;
}
/* ====== MOBILE RESPONSIVENESS ====== */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    nav ul {
        padding: 0;
        margin-top: 10px;
    }

    nav ul li a {
        font-size: 16px;
    }

    .artist-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
        padding: 20px;
    }

    .artist-section img {
        margin-left: 0;
        margin-top: 15px;
        width: 120px;
        height: 120px;
    }

    .artist-section .info {
        text-align: center;
    }

    .artist-section h1 {
        font-size: 22px;
    }

    .artist-section p {
        font-size: 14px;
    }

    button {
        font-size: 12px;
        padding: 6px 12px;
    }
    .songsButton{
        padding: 6px 12px;  
    }
}
button svg {
    width: 16px;
    height: 16px;
    fill: black;
    position: relative;
    top: 2px;
  }

