.product-name {
  text-align: center;
  font-size: 1.5rem;
}

.product-description {
  margin-bottom: 2rem;
  font-size: 1rem;
  text-align: center;
}

.product-price {
  text-align: center;
  font-size: 1.5rem;
}

img {
  width:90%; 
  max-width:70%;
  display: block; 
  margin-left: auto; 
  margin-right: auto; 
  border-radius: 2px;
  padding-top: 50px;
  padding-right: 0;
}

.store-item-container {
  background-color: rgba(211, 199, 180, 0);
  display:flex;
  flex-direction: row;
  padding: 1.5rem;
  padding-top: 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
  text-align: center;
  border-radius: 12px;
}

.store-item-left {
  padding: 0px;
  flex: 40%;
}  

.store-item-right {
  padding: 0px;
  flex: 40%;
}

a.button.buy-song {
  font-size: 1rem;
  display: inline-block; 
  float: right;
}

.buy-ep-text {
  text-align: center;
  font-size: 1.3rem;
}

.choose-price-text {
  text-align: center;
}

a.button.buy-ep {
  width: 5rem;
  margin-bottom: 1rem;
  display: inline-block;
  margin-left: auto;
  margin-right: 1rem;
}

li.track {
  margin-bottom: 2rem;
}

.track {
  margin-top: 2rem;
}

ul.track-list {
  margin-bottom: 3rem;
}

/* Responsive layout - makes a one column-layout instead of two-column layout */
@media (max-width: 900px) {
  .store-item-container {
    flex-direction: column;
    align-items: center;
  }

  img {
    width: 50%;
  }

  .product-name {
    padding-top: 20px;
  }

  .store-text {
    margin: 0;
  }
  
}

