a {
  color: black;
}

.products-container {
  display: flex;
  width: 100%;
  align-self: baseline;
  flex-direction: column;
  padding: 0px 0px 100px 0px;
}

.type-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.product-tile {
  display: flex;
  flex-direction: row;
  border: 1px solid #f1f1f1;
  gap: 10px;
  min-width: 200px;
  box-shadow: 0 0 20px -20px #555555;
  height: auto;
}

.product-link {
  padding: 10px 30px;
}

.product-thumb-container {
  position: relative;
  width: 170px;
  height: 200px;
  margin: auto;
}

.product-thumb {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 80%;
  max-height: 80%;
}

.product-info-container{
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-name-container {
  width: 100%;
  justify-content: center;
  align-self: center;
}

.product-name {
  text-align: left;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0;
}

a:hover .product-power,
a:hover .product-name {
  color: #b80056;
}

@media screen and (max-width: 600px) {
  .title-container::before {
    opacity: 0.1;
    filter: blur(3px);
    -webkit-filter: blur(3px);
  }

  .product-tile {
    max-width: 100%;
  }
}