.product-link {
   background-color: black;
  padding: 0;
  display: flex;
  justify-content: space-between;
   transition: scale 0.25s, background-color 0.5s;
  align-items: center;
  margin-bottom: 4rem;
}

.product-link-alt {
  flex-direction: row-reverse;
}

.product-link:hover {
  background-color: #525766;
  scale: 1.05;
}

.product-link h1 {
  text-align: left;
  padding: 0 2.5rem 0 1.5rem;
  font-size: 32px;
}

.product-link-alt h1 {
padding: 0 1.5rem 0 2.5rem;
}

.product-link img {
  max-width: 50%;
  max-height: 50%;
  margin-right: -1rem;
  scale: 1.1;
  border: solid 2px #86807D;
}

.product-linklink {
    text-decoration-line: none;
}

.phone-port-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .web-port-menu {
  display: none;
}
  
  .phone-port-menu {
    display: block;
  }
  
  .product-link {
    flex-direction: column;
  }
  
  .product-link h1 {
  text-align: center;
  padding: 0.5rem;
  font-size: 16pt;
}
}
