
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      list-style-type: none;
      text-decoration: none;
      
    }


    a{
        color: black;
    }

    body {
      font-family: sans-serif;
      background: #f5f5f5;
    }

    .albums {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; 
      gap: 2rem;
      padding: 1rem;
    }

    .album {
      background: #44a0e281;
      border-radius: 1rem;
      overflow: hidden;
      text-align: center;
      flex: 1 1 250px; 
      max-width: 300px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
    }

    .singer {
      width: 100%;
      min-height: 270px;
      object-position: center;
      object-fit: cover;
      border-radius: 0.5rem;
    }


    .albumName {
      font-size: 1.2rem;
      margin: 1rem 0 0.5rem 0;
    }

    .albumDescription {
      font-size: 0.95rem;
      color: #333;
    }


    @media (max-width: 768px) {
      .album {
        max-width: 100%;
      }
    }

    