body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: purple;
  color: #333;
  text-align: center;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: white;
  font-weight: 700;
}

h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}

p {
  font-size: 1.5em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}

a {
  display: inline-block;
  margin-right: 20px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  
}

a:hover {
  text-decoration: underline;
  color: #2980b9;
}

/* Updated iframe positioning */
.iframe {
  display: block;
  margin: 20px auto; /* Centers it and adds spacing below links */
  width: 535px;
  height: 380px;
  z-index: 999;
  position: static; /* Removes fixed positioning */
}

.background-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("wallpaper.png") no-repeat center center fixed;
  background-size: cover;
  filter: blur(10px); /* Adjust blur strength */
  z-index: -1; /* Puts it behind content */
}
