#productslist-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 15px;
}

#productslist-heading {
  font-size: 40px; 
  margin-bottom: 15px;
}
  
.productslist-row {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  width: 100%;

}

.productslist-box {
  position: relative;
  height: 500px;
  background-color: rgb(1,128,200);
  width: 250px;
  overflow: hidden;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#productslist-box-heading {
  font-size: 30px;
}

#release-box {
  position: relative;
  height: 500px;
  background-color: rgb(1,128,200);
  width: 250px;
  overflow: hidden;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 27px;
  font-weight: 500;
}

.productslist-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  z-index: 0;
}

.productslist-content-box {
  position: relative;
  z-index: 1;
  color: white;
  top: 30%;
  text-align: center;
  
}

.standard-btn {
  display: inline-block;
  padding: 15px 25px;
  background-color: rgb(1,128,200);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 20px;

  transition: 0.2s;

}

.standard-btn:hover {
  background-color: rgb(75,73,108);
  color: grey;
}


@media (max-width: 610px) {
  .productslist-row{
    flex-direction: column;
  }
}