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

body {
  font-family: 'Arial', sans-serif;
  background: radial-gradient(ellipse at center, #2f2f2f 0%, #1b1b1b 100%);
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.container {
  max-width: 600px;
  width: 90%; /* Zorgt ervoor dat de container responsief is */
}

h1 {
  font-size: 48px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.subtitle {
  margin: 20px 0;
  font-size: 14px;
  letter-spacing: 2px;
  color: #ccc;
}

.progress-bar {
  width: 100%;
  background-color: #444;
  border-radius: 20px;
  height: 20px;
  margin: 20px 0 10px;
  overflow: hidden;
}

.progress-fill {
  width: 50%; /* Pas dit percentage aan indien nodig */
  height: 100%;
  background-color: #6eb6ff;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #aaa;
}

.notify-btn {
  background-color: #6eb6ff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 20px 0;
  cursor: pointer;
  font-size: 14px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 20px;
  border: 1px solid white;
  border-radius: 50%;
  padding: 10px;
  text-decoration: none;
  transition: background 0.3s;
}

.social-icons a:hover {
  background-color: white;
  color: #000;
}

.home-link {
  position: absolute;
  top: 20px;
  right: 40px;
}

.home-link a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Media Queries voor Responsiviteit */
@media (max-width: 768px) {
  h1 {
      font-size: 36px; /* Verklein de koptekst op kleinere schermen */
  }

  .subtitle {
      font-size: 12px; /* Verklein de ondertitel */
  }

  .notify-btn {
      padding: 8px 16px; /* Verklei de knop */
      font-size: 12px; /* Verklein de tekst op de knop */
  }

  .social-icons a {
      font-size: 18px; /* Verklein de sociale iconen */
      padding: 8px; /* Verklein de padding van de iconen */
  }

  .home-link {
      right: 20px; /* Verplaats de home-link */
  }
}

@media (max-width: 480px) {
  h1 {
      font-size: 28px; /* Nog een kleinere koptekst voor mobiele apparaten */
  }

  .subtitle {
      font-size: 10px; /* Nog kleinere ondertitel */
  }

  .notify-btn {
      padding: 6px 12px; /* Nog kleinere knop */
      font-size: 10px; /* Nog kleinere tekst op de knop */
  }

  .social-icons a {
      font-size: 16px; /* Nog kleinere sociale iconen */
      padding: 6px; /* Nog kleinere padding van de iconen */
  }

  .home-link {
      right: 10px; /* Nog dichterbij op kleinere schermen */
  }
}
