  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
  }
  

  .banner {
    position: relative;
    width: 300px;
    height: 250px;
    overflow: hidden;
    background-image: url(./spotifyAssets/Spotify-background.png);
  }

  .layer {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .layer1 {
    background-image: url(./spotifyAssets/Spotify-300x250.png);
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
  }

  .layer2 {
    background-image: url(./spotifyAssets/IndulgeOnYourBias..png);
    background-position: left bottom;
    bottom: 15px;
    left: 15px;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 1;
    transform: translateX(-100%);
    transition: transform 1s ease-in-out;
  }
  
  .layer3 {
    background-image: url(./spotifyAssets/Headline.png);
    background-repeat: no-repeat;
    top: 15px;
    left: 15px;
    z-index: 2;
    opacity: 1;
    transform: translateX(-100%);
    transition: transform 1s ease-in-out, opacity 2s ease-in-out;
  }

  .layer4 {
    background-image: url(./spotifyAssets/P129/month.png);
    background-repeat: no-repeat;
    background-position: center left;
    left: 15px;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 2;
  }

  .layer5 {
    background-image: url(./spotifyAssets/2-3.png);
    right: 10px;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 3;
  }

  .layer6 {
    background-image: url(./spotifyAssets/Logo.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    z-index: 3;
    opacity: 1;
    transform: translateX(100%);
    transition: transform 1s ease-in-out, opacity 2s ease-in-out;
  }

  .layer7 {
    background-image: url(./spotifyAssets/replay.png);
    transition: opacity 2s ease-in-out, opacity 2s ease-in-out;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 3;
    cursor: pointer;
  }