.wishlistButton .steamWidget
{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
  margin-bottom: 6%;
  margin-left: 35%;
  margin-right: 35%;
  font-size: calc(5 * (1vw + 1vh)/2);;
  transition: 0.3s;
  color: #fff;
  border-radius: 10px;
  background-color: rgb(23, 27, 31);
  text-decoration: none;
  padding: 5px 10px;
}

.wishlistButton .steamWidget:hover 
{
  background-color: #ffffff;
  color: #353755;
  border-radius: 10px;
  box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.2),
                  0 0 40px 20px rgba(53, 55, 85, 0.2),
                  0 0 60px 30px rgba(0, 0, 255, 0.2);
}

@media (max-width: 768px) {
  .wishlistButton .steamWidget
  {
    margin-top: 10%;
    margin-bottom: 6%;
    margin-left: 20%;
    margin-right: 20%;
    font-size: 3rem;
  }
}