

#Homecontainer {

  position: relative;
  top: 130px;
  width: 100%;

  border-radius: 50px;
  text-align: center;
  z-index: 0;
}






img {
  width: 100%;
  height: 100%;

}






/* =================================================== */
/* Index2========================================= */
/* =================================================== */

#begroetingblok {

  border-radius: 50px;
  z-index: -1;
padding-right: 2%;
padding-bottom: 20px;
  position: relative;
  height: fit-content;
    
 
}

#profielcirkel {
  float: right;
border: 3px solid aqua;
box-shadow: rgb(19, 212, 255) 0px 22px 90px 4px; 

  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 400px;
  background-color:  aqua;

  z-index: 9900;
 
}


#begroetingstekst {

 /* DIT IS DE TRUC: dit zorgt ervoor dat de tekst een eigen 'blok' vormt naast de float */
 
  width: 80%;  
  padding-top: 120px; 
  text-align: left;
  font-size: 20px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}




/* Zorg dat de titel zelf ook goed staat */
#Titel {
 

  text-align: center;

  padding: 0px;
  font-size: 70px; 
}
#Naam {
  color: aqua;
   white-space: nowrap;
}
#beroep{
  white-space: nowrap;

}
span{
   white-space: nowrap;
}

#kleineTekst {
width: 70%;
justify-self: center;
  padding: 10px;
  text-align: center;
  


}


#knoppenContainer{

  z-index: 100;
  justify-self: center;
  justify-content: space-between;
  display: flex;
  gap: 10px;
max-width: 600px;
  width: 100%;
}
.knoppen{
  display: flex;
  align-items: center;
  justify-content: center;
 cursor: pointer;
  background-color: aqua;
color: inherit;
text-align: center;
text-decoration: none;
padding: 5px;
  height: 30px;
  border-radius: 20px;
}

.knoppen:hover{
 
  transform: scale(1.05);
box-shadow: rgb(76, 186, 233) 0px 2px 4px 0px, rgb(76, 186, 233) 0px 2px 16px 0px;
}



/* =================================================== */
/* slider========================================= */
/* =================================================== */

#slider {

  justify-self: center;
  position: relative;    /* container voor absolute #smallcontainer */
  overflow: hidden;
  max-width: 500px;
  width: 90%;            /* zoals jij wilt */
         /* hoogte slider */

}

#smallcontainer {
justify-content: space-between;
  display: flex;
  gap: 10px;
}

.box{
 
width: 50px;
height: 50px;


}
.box img {
   user-select: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =================================================== */
/* responsive========================================= */
/* =================================================== */



@media only screen and (max-width: 1050px){
  #begroetingstekst{
    padding-top: 0;
  }
   #begroetingblok{
    padding-right: 0%;
   align-items: center;
    display: flex;
    flex-direction: column;
  }
}




@media only screen and (max-width: 420px) {
  #begroetingstekst{
    width: 90%;
  }
  
  #profielcirkel{
   
    width: 300px !important;
    height: 300px !important;
  }
}



@media only screen and (max-width: 720px) {

  
  #begroetingblok{
    display: flex;
    flex-direction: column;
  }

  #Titel{
    font-size: 60px;
  }
#begroetingstekst{
  font-size: 19px;
}

  #profielcirkel{
    width: 350px;
    height: 350px;
  }
 

  .normal-menu-link {
    display: none;
  }
  .normal-menu{
    position: absolute;
top: 0;
left: 0;
  }

  .hamburgermenu-button {

    display: flex;
  }

  #topnavWisselknop {
    display: none;
    /* of flex als je wilt */
  }

}

@media only screen and (max-width: 650px){


  #Titel{
    font-size: 50px;
  }

}

@media only screen and (max-width: 520px){

#beroep {
  white-space: wrap; /* zorgt dat de woorden niet gesplitst worden */
}
  #Titel{
    font-size: 50px;
  }

}
@media only screen and (max-width: 350px){


  #Titel{
    font-size: 40px;
  }

}