@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,600;0,900;1,300;1,400;1,700&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    /* min-height: 100%;  */
    margin: 0; 
    box-sizing: border-box;
    background: #f6f8fc;
}


/* Custom styles */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 100%; /* Zorgt ervoor dat de container niet te breed wordt */
  padding: 20px; /* Voeg padding toe voor kleinere schermen */
  box-sizing: border-box;
  text-align: center;
  position: relative;
  z-index: 10;
}

.main_loginpage {
  max-width: 800px; /* Beperkt de maximale breedte van de inhoud */
  margin: 0 auto; /* Centreert de inhoud horizontaal */
}

.main_loginpage h1 {
  font-size: 4vw; /* Responsieve font-size */
  color: #00265f;
  margin: 0;
}
.main_loginpage p {
  color: #000;
}
@media (max-width: 840px) {
  .main_loginpage h1 {
      font-size: 8vw; /* Grotere font-size voor kleinere schermen */
  }
}

.main_loginpage p {
  font-weight: 600;
  margin: 10px 0 40px;
  color: #000;
}

.geld_verdienen a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px; /* Grotere padding voor meer klikbare ruimte */
  background-color: #3586ff;
  border-radius: 5px;
  color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
  margin-top: 20px; /* Voeg marge toe om afstand van andere elementen te bewaren */
}

.geld_verdienen a:hover {
  opacity: 0.8;
}

/* Neumorphic styles, if applicable */
.neumorphic {
  background: #f0f4f8;
  box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
}

.neumorphic-inset {
  background: #f0f4f8;
  box-shadow: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #ffffff;
}

@keyframes float {
  0% {
      transform: translateY(0px);
  }

  50% {
      transform: translateY(-20px);
  }

  100% {
      transform: translateY(0px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}
#particles-js {
    position: fixed; /* Zorg dat het achtergrond is en niet scrolt */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Zet de z-index laag zodat het onder andere elementen ligt */
    pointer-events: none; /* Zorgt ervoor dat het element geen muisklikken opvangt */
}

/* Nieuwe stijlen voor de secties 'Voordelen' en 'Aan de slag' */
.voordelen, .aan-de-slag {
    background-color: #f6f8fc; /* Zorg voor een lichte achtergrond die aansluit bij het bestaande ontwerp */
    padding: 30px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.voordelen h2, .aan-de-slag h2 {
    font-size: 1.75rem;
    color: #00265f;
    text-align: center;
    margin-bottom: 20px;
}

.voordelen ul {
    list-style-type: disc;
    margin-left: 20px;
}

.voordelen li {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.aan-de-slag .steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 640px) {
    .aan-de-slag .steps {
        flex-direction: row;
    }
}

.step {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step h3 {
    font-size: 1.25rem;
    color: #3586ff;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: #555;
}

.step:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
