@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');



body {
    /*background-color: #69738c; */
/*background-image: linear-gradient(
  0deg,
  rgb(158, 1, 1) 2.8%,
  rgb(255, 255, 255) 32%
); */
font-family: 'Lato', sans-serif;
margin: 0;
}

.artworkcontainer {
    max-width: 960px;
    margin: 20px auto;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310, 1fr));
}

.slideshow-container {
    max-width: 620px;
    max-height: 700px;
    min-height: 700px;
    /*max-height: 120px; */
    position: relative;
    margin: auto;
    /*box-shadow: 0px 2px 2px #2c2c2c;*/
    grid-column: 1 / 2;
  }

  .bottom {
    position: absolute;
    bottom: 10px;
    bottom: 10px;
    left: 50%; 
    transform: translate(-50%, -50%);
    margin: 0 auto;
    width: 200px;
  }

  .music-container {
    max-width: 620px;
    border-radius: 5px;
    margin: auto;
    padding: 0px;
    display: grid;
    /*grid-template-columns: (1fr, 1fr, 1fr,); */
    grid-template-columns: repeat(auto-fill, minmax(310, 1fr));
    /*grid-template-rows: repeat(auto-fill, minmax(310, 1fr));*/
  }

  
  .progress-container {
    grid-row: 3 / 1; 
    max-width: 620px;
    height: 10px;
    background: rgb(130, 130, 130);
    border-radius: 5px;
    position: static;
    margin: auto;
    box-shadow: 0px 2px 2px #b6b6b6;
    grid-column: 1 / 3;
  }

  .progress {
    /* grid-row: 1 / 1; */
    background-color: #6e6e6e;
    border-radius: 5px;
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
  }

  .rectangle {
    height: 40px;
    width: 200px;
    border-radius: 5px;
    box-shadow: 0px, 2px, 2px rgb(194, 194, 194);
    background-color: #ffffff;
    grid-column: 1 / 1;
  }

  .navigation {
    /*grid-row: 1 / 1; /*having no effect */
    /* grid-column: 1 / 2;*/

    display: flex; 
    align-items: center;
    justify-content: center;
    z-index: 1;
    max-width: 300px;
    background: rgb(255, 255, 255); 
    border-radius: 5px; 
    position: static;
    margin: auto;
    /* box-shadow: 0px 0px 1px 1px#cacaca; */
    /*grid-column: 3 / 3;
    grid-row: 2 / 1; */
  }

  .action-btn {
    background-color: #ffffff;
    border: 0;
    color: #c4c4c4;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    margin: 0 15px;
  }
  
  .action-btn.action-btn-big {
    color: #a7a7a7;
    font-size: 30px;
  }
  /*not sure what this is doing */
  .action-btn:focus {
    outline: 1px;
  }


  /*.title {
    max-width: 310px;
    background: rgb(0, 255, 34);
    position: relative;
    margin: auto;
    box-shadow: 0px 5px 5px #ffa1a1;
    grid-column: 3 / 1;
  } */

  .prev, .next {
    cursor: pointer;
    position: relative;
    top: 5px;
    width: 5px;
    padding: 16px;
    margin-top: -22px;
    background-color: #fafafa;
    opacity: 50%;
    color: #a8a8a8;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

    /*positjon the next button to the right */
    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
      
    }
  
    /* on hover add a black background color with transpaencry */
    .prev:hover, .next:hover {
      background-color: #000000;
    }

      /*caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }

  /*number text 1 to 4 etc. */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }

  /* the dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0,6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.home {
  position: absolute;
  bottom: 0%;
  left: 0px;
  border-radius: 2px;
  border-color: #ffbdbd;
  padding-top: 20px;
}

.logo {
  width: 15%;
  height: auto;
}

.Bside {
  position: fixed;
  padding: 50px 250px;
  height: 100px;
  width: 100px;
}

/*fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


  @media(max-width: 500px) {
    .container {
        grid-template-columns: repeat(1fr); /*sets grid cols to 1 fr for smaller devices*/
    }
}