body {
  position: relative;
  margin: 0;
  padding: 0;
  background-image: none;
    width: 100%;
  height: 100%;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("face.png");
  opacity: 1;
  z-index: -1;
  pointer-events: none;

  /*
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  */
}

ul li {
  padding: 0;
  margin: 0;
}


.photo {
  width: 220px;
  padding: 10px 10px 35px 10px; /* extra padding on bottom */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  border: 1px solid lightgray;

  background-image: linear-gradient(to bottom right, white, rgb(236, 236, 236));
}

.photo img {
  width: 100%;
  display: block;
  border-radius: 2px;
}

.wow-interest {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wow-interest .category {
  border: 2px dashed skyblue;
  border-radius: 0.5rem;
  padding: 10px;
  padding-top: 0px;
}

.category-flex {
  display: flex;
  flex-direction: row;
  gap: 10px;
  border: none;
  flex-wrap: wrap;
}

.the-interest {
  height: 100px;
  width: 100px;
  border: 1px solid gray;
  border-radius: 4px;
  display: block;

}