body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f5f0ef;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  z-index: 10;
  text-align: center;
}

.overlay img {
  max-width: 280px;
  height: auto;
  margin-bottom: 5px;
}

.overlay p {
  margin: 0;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.overlay a {
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.overlay a:hover {
  opacity: 0.5;
}
