#matbakhna {
  width: 95%;
  height: 100px;
  /* background-color: bisque; */
  margin: 5px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#matbakhna div {
  width: 48%;
  height: 100%;
  /* background-color: rgb(47, 27, 3); */
  margin: 5px auto;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

#matbakhna div img {
  width: 100%;
  height: 100%;
}

#day-name {
  position: absolute;
  left: 9px;
  bottom: 5px;
  font-size: 14px;
  color: var(--light1);
  animation: smoothBlink 2.5s ease-in-out infinite;
}

@keyframes smoothBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
