.newspaper {
  width: 100%;
  padding: 20px;
  background-color: white;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.not-found-title {
  display: flex;
  gap: 20px;
}

.magnifier {
  width: 50px;
  height: 50px;
  border: 5px solid black;
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
}

.magnifier:after {
  content: "";
  width: 20px;
  height: 5px;
  background-color: black;
  position: absolute;
  bottom: -2px; /* Adjusted to connect with the circle */
  right: -12px; /* Adjusted to connect with the circle */
  transform: rotate(45deg);
}

.magnifier:hover {
  transform: scale(1.1); /* subtle grow effect on hover */
}/*# sourceMappingURL=404.css.map */