body {
  margin: 0;
  /* Remove default margin */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
  background-image: url('https://bing.img.run/uhd.php');
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  /* Hide scrollbars for the entire body */
}

.notification-container {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  max-width: 500px;
}

.notification-content {
  padding: 20px;
  border-radius: 20px;
}

h2 {
  margin-bottom: 10px;
}

p {
  margin: 0;
}

button {
  padding: 8px 16px;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

button:focus {
  outline: none;
}