* {
    padding: 0;
    margin: 0;
    boz-sizing: border-box;
    font-family: sans-serif;
  }
  body {
   /* background: linear-gradient(50deg, rgb(255, 255, 255), rgb(217, 216, 219), #6b6a6b);*/
   background-color: white;
  }
  h1, .album__artist, .album__desc {
    font-family: 'Nunito', sans-serif;
   /*text-shadow: 3px 3px 9px rgba(0, 0, 0, 0.3);*/
  }
  
  .album__artist {
    color: rgb(255, 255, 255);
    text-shadow: 3px 3px 9px rgba(0, 0, 0, 0.5);
  }
  h1 {
    text-align: center;
    color: white;
    margin: 20px;
    font-weight: lighter;
    /*text-shadow: 3px 3px 9px rgba(0, 0, 0, 0.5);*/
  }
  
  .album__desc {
    font-size: 0.7rem;
  }
  h2 {
    font-family: 'Istok Web', sans-serif;
    letter-spacing: 1px;
    font-weight: 100;
    color: white;
    font-size:22px !important;
    /*text-shadow: 3px 3px 9px rgba(0, 0, 0, 0.75);*/
  }
  .albums {
        margin: 50px 10px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-gap: 20px;
      }
  
      .album {
        background: rgba(200, 200, 200, 0.1);
        border: 1px solid rgba(200, 200, 200, 0.1);
        box-shadow: 10px 10px 28px -10px rgba(0, 0, 0, 0.363);
        padding: 10px;
        display: grid;
        grid-template-columns: 150px 1fr;
        grid-gap: 10px;
        align-items: center;
        color: rgb(41, 38, 38);
        transition: all 0.5s;
        
      }
  .album:hover {
    transform: scale(1.01);
    background: rgba(233, 188, 39, 0.658);
  }
  
  
      .album__artwork {
        width: 100%;
      }