/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and HTML styling */
body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden; /* Prevent scrolling */
}

/* Background image with blur effect */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('grill-products.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  filter: blur(15px); /* Apply blur effect to the background */
  z-index: -1; /* Ensure the background stays behind the popup */
  top: 0;
  left: 0;
}

/* Popup styles (clear, no blur) */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px; /* Border radius of 5px */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Drop shadow effect */
  text-align: center;
  z-index: 10; /* Ensure popup is on top and not affected by the blur */
}

.popup h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.popup p {
  margin-bottom: 20px;
  font-size: 18px;
}

.btn {
  background-color: #4CAF50;
  color: white;
  padding: 5px 10px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
   font-size: 14px;
}

.btn:hover {
  background-color: #45a049;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}
