.image-container {
  width: 300px;
  height: 300px;
  background-image: url(mango.png);
  background-size: cover;
  background-color: rgba(255, 0, 0, 0.5); /* Red tint with 50% opacity */
  background-blend-mode: multiply; /* Blending mode for the tint */
}

body {
  background: rgb(102, 156, 201);
}
p {
  color: black;
}
h1 {
  font-weight: bold;
}


