#return {
  padding-bottom: 1px;
  margin: 0 10px;
  border-bottom: solid 1px black;
  font-size: 15px;
  color: black;
  text-decoration-line: none;
}

#products {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: wrap;
}

.productcard {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  min-height: 300px;
  margin: 10px;
  flex: 32%;
  border-radius: 10px;
  background-color: rgb(255,255,255);
}

.productcard span {
  display: block;
  width: 60%;
}

.productcard span img {
  width: 100%;
  border-radius: 10px 0 0 0;
}

.productcard div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: calc(40% - 20px);
  margin-left: 10px;
}

.productcard div h4 {
  margin: 10px 0;
  width: 100%;
  height: fit-content;
}

.productcard div p {
  width: 100%;
  margin: 10px 0;
  flex-grow: 1;
}

.productcard div .price {
  display: block;
  width: 100%;
  flex-grow: 0;
  font-weight: bold;
  font-size: 19px;
}

.productbutton {
  float: right;
  height: 100%;
  background-color: rgb(140,220,255);
  border: solid rgb(60,120,180) 1px;
  border-radius: 8px;
  box-shadow: 1px 1px 4px grey;
  font-family: "Alata";
}

.productbutton:hover {
  background-color: rgb(100,180,220)
}

@media (max-width: 650px) {
  .productcard {
    flex-direction: column;
  }

  .productcard span {
    width: 100%;
  }
  .productcard span img {
    border-radius: 10px 10px 0 0;
  }

  .productcard div {
    width: calc(100% - 20px);
    margin: 10px;
  }
}

#notificationbar {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 10px;
  z-index: 1;
}

.notification {
  display: none;
  padding: 10px;
  margin: 5px;
  border: solid rgb(100,100,100) 2px;
  border-radius: 10px;
  z-index: 1;
  background-color: white;
  box-shadow: 1px 1px 5px grey;
}

@keyframes fadeInAnim {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes fadeOutAnim {
  from {opacity: 1;}
  to {opacity: 0;}
}
.notificationinanim {
  animation-name: fadeInAnim;
  animation-duration: 0.5s;
}
.notificationoutanim {
  animation-name: fadeOutAnim;
  animation-duration: 0.5s;
}

.notification p {
  margin: 0;
  font-size: 20px;
}