 body {
     background-color: #191919;
     margin: 0;
     font-family: 'Poppins', sans-serif;
 }

 .title {
     width: 100%;
     padding-top: 17rem;
     padding-bottom: 11rem;
     padding-left: 4rem;
     padding-right: 4rem;
     box-sizing: border-box;
 }

 .content {
     background-color: rgb(142, 139, 139);
 }

 .title h1 {
     font-size: 60px;
     font-weight: 900;
     margin: 0;
     color: #f0f0e9;
     font-weight: 1000;
 }

 h2 {
     font-size: 20px;
 }

 hr {
     width: 50%;
 }

 .button-link {
     display: inline-block;
     padding: 1rem 1rem;
     background-color: #333;
     color: white;
     margin: .5rem;
     text-decoration: none;
     border-radius: 10px;
     font-weight: bold;
     font-family: sans-serif;
     transition: background-color 0.3s ease;
 }

 .button-link:hover {
     background-color: #555;
 }

 .section {
     display: grid;
     padding: 2rem;
     margin-left: 7rem;
     margin-right: 7rem;
     min-height: auto;
     align-items: flex-start;
     gap: 2rem;
 }

 .artist {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
     width: 100%;
     align-self: center;

 }

 .bio {
     padding-top: 1rem;
 }

 .name {
     font-weight: bold;
     color: #f0f0e9;
     font-size: 23px;
     margin-bottom: 0.25rem;
 }

 .bio {
     font-weight: bold;
     color: #f0f0e9;

 }

 .section .bio {
     color: #f0f0e9;
 }

 .image-area {
     display: block;
     width: 300px;
     height: 300px;
     overflow: hidden;
     margin-bottom: 1rem;
 }

 p {
     line-height: 1.5rem;
 }

 .img {
     width: 100%;
     height: 100%;
     box-shadow: 10px 5px 5px red;
 }

 .songs {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     width: 100%;

 }

 #track {
     color: #f0f0e9;
 }

 .song-row {
     display: grid;
     justify-content: space-between;
     font-size: 16px;
 }

 .song-title {
     font-weight: bold;
     color: #264d6a;
 }

 .album-title {
     font-weight: bold;
     color: #f0f0e9;
 }

 .list {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 2rem;
 }

 @media (min-width: 768px) {
     .section {
         flex-direction: row;
         align-items: center;
         justify-content: space-between;
         padding: 60px 40px;
     }

     .artist {
         flex-direction: row;
         flex: 1;
         gap: 20px;
     }

     .songs {
         flex: 1;
     }
 }