body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    min-height: 100vh;
    box-sizing: border-box;

}



.center {
    display: flex;
    justify-content: center
}

.flashes {
  position: fixed;
  top: 30%; /* Adjust the top position */
  left: 50%;
  transform: translate(-50%, -50%); /* Center the element */
  text-align: center;
  z-index: 9999; /* Ensure it's on top of the background image */
  width: 80%;
  max-width: 600px;
}

.flashes .error {
  margin-right: auto;
  margin-left: auto;
  color: black;
  text-align: center;
  width: fit-content;
  padding: 20px;
  background-color: rgba(255, 0, 0, 0.859);
  border-style: solid;
  border-width: thick;
  border-radius: 1pc;
}

.flashes .succes {
  margin-right: auto;
  margin-left: auto;
  color: black;
  text-align: center;
  width: fit-content;
  padding: 20px;
  background-color: rgb(0, 255, 81);
  border-style: solid;
  border-width: thick;
  border-radius: 1pc;
}


.content {
  flex: 1;
}
.bottom-box {
  background-color: black;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
}
.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.links a {
  color: white;
  text-decoration: none;
}
.links a:hover {
  text-decoration: underline;
}
.middle {
  display: flex;
  align-items: center;
}
.middle img {
  cursor: pointer;
  width: auto;
}

.link {
  text-decoration: none;
  cursor: pointer;
  color: black;
  
}

/* _________________________________________Kleuren en lettertypes_____________________________________________________ */


.Sfont {
    font-family: "Raleway Dots", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.Kfont {
    font-family: "Caveat Brush", cursive;
    font-weight: 400;
    font-style: normal;
}


/* weight: Use a value from 300 to 900 */
.Mfont {
    font-family: "Merienda", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/*  weight: Use a value from 100 to 900 */
.Lfont {
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.Tfont {  
  font-family: "Poetsen One", sans-serif;
  font-weight: 100;
  font-style: normal;
  text-decoration: none;
}


.SPGroen{
    background-color: #c7ff00;
    color: #51501f;
}

.Hkleur {
    background-color: #c7ff00;
}

.Skleur {
    background-color: #BE2D93
}

.STkleur {
    color: #BE2D93
}

.Skleur2 {
    background-color: #FBEAFF;
}

.Skleur3 {
    background-color: #E55934;
}

.Skleur4 {
    background-color: #FA7921;
}

.TXTBoxKleur {
  background-color: #fdeacc;
}


/*------------------------------------------------------EINDE Kleuren en letertypes------------------------------------------------------*/

/* ______________________________________________________Text styles______________________________________________________ */


H1 {
    text-align: center;
    font-size: 5vh;
}

H2 {
  text-align: center;
  font-size: 3vh;
}




/*------------------------------------------------------EINDE Text style------------------------------------------------------*/

/* ______________________________________________________Button styles______________________________________________________ */
.BBcontainer {
  display: flex;
  justify-content: center;
}

.active-button {
  background-color: black;
  color: white; /* Adjust text color for better contrast if needed */
}

.Bbutton {
  border: none;
  display: inline-block; 
  margin: 0 1pc;
  width: 40%; /* Change width to a percentage */
  height: 3vw; /* Use viewport width units */
  border-radius: 1pc; 
  text-align: center;
  text-decoration: none;
  font-size: 2vw; /* Use viewport width units */
  cursor: pointer;
  transition: background-color 600ms, color 600ms;
}

.HBcontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.HButton-row {
  display: flex;
  gap: 1pc; /* Adjusts spacing between buttons */
  margin-bottom: 1pc;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.Hbutton {
  border: none;
  display: inline-block; 
  margin: 0 1pc;
  width: 20%; /* Change width to a percentage */
  height: 5vw; /* Use viewport width units */
  border-radius: 1pc; 
  text-align: center;
  text-decoration: none;
  font-size: 2vw; /* Use viewport width units */
  cursor: pointer;
  transition: background-color 600ms, color 600ms;
}

.Hbutton a {
  display: block;
  color: inherit; /* Ensures the link takes the button text color */
  text-decoration: none; /* Removes underline from the link */


}

.Hbutton:hover {
  background-color: #BE2D93;
  box-shadow: 0 8px 14px 0 #BE2D93; 
  color: white;
  cursor: pointer;

}

.HBfull {
  width: calc(40% + 3pc); /* Ensures the width matches the combined width of the two buttons including the gap */
  padding: 10px 20px;
  margin-bottom: 1pc;
  cursor: pointer;
}

/* Add media query for smaller screens */
@media screen and (max-width: 768px) {
  .Hbutton {
    width: 80%; /* Adjust width for smaller screens */
    height: 11vw; /* Use viewport width units */
    font-size: 5vw; /* Adjust font size for smaller screens */
    margin: 4vw; /* Adjust margin for smaller screens */
  }
  .Bbutton {
    height: 8vw; /* Adjust width for smaller screens */
    height: 11vw; /* Use viewport width units */
    font-size: 5vw; /* Adjust font size for smaller screens */
    margin: 4vw; /* Adjust margin for smaller screens */
  }

  .HButton-row {
    flex-direction: column;
  }
}




/*------------------------------------------------------EINDE Button style------------------------------------------------------*/

/* ______________________________________________________index______________________________________________________ */
/* The hero image */
.BGack{
  background-color: #9BC53D;
  width: 100%;
}
.bg {
  height: 20vw;
  width: 100%;
  margin: 0;
  margin-bottom: 2vh;
  box-shadow: 8px 8px 16px 6px #161f2e;

  position: relative;
  z-index: 1; /* Ensure the background image is behind the flashes */
}

@media only screen and (max-width: 700px) {
  .bg {
  height: 20vw;
  }
}

/*------------------------------------------------------EINDE index------------------------------------------------------*/

/* ______________________________________________________menu bar______________________________________________________ */
.topmenu {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Centers items vertically */
  width: 100%;
  height: 10vh;
}

.menulogo{
  max-height: 10vh;

}

.menubtn {
font-size: 4vh; /* Use viewport width units */
cursor:pointer;
padding: 1vh;
padding-right: 2vh;
border-radius: 2vh;
text-decoration: none;
display: inline-block;
transition-duration: 600ms;
transition-property: background-color, color;
}


.menubtn:hover {
  background-color: #BE2D93;
  box-shadow: 0 8px 14px 0 #BE2D93; 
  color: white;
  cursor: pointer;
  transition-duration: 600ms;
  transition-property: background-color, color;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
  z-index: 499; /* Lower z-index than menu */
  display: none; /* Initially hidden */
}

.foldmenubar {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Centers items vertically */
  justify-content: space-between; /* Aligns items to each end of the container */
  width: 100%;
  background-color: #c7ff00;
  font-size: 4vh;
  padding-left: 20px;
  height: 10vh;
}


.closebtn{
  cursor: pointer;
  margin-right: 40px;
}
.sidenav {
  width: 30vw;
  position: fixed;
  top: 0;
  right: -50%; /* Initially off-screen */
  height: 100%;
  background-color: white; /* Set your desired background color */
  transition: right 0.3s; /* Add transition for smooth animation */
  z-index: 500; /* Higher z-index than overlay */
}

.sidenav.open {
  right: 0; /* Slide in from the right */
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 3vh;
  display: block;
  transition: 0.3s;
  text-align: center;
  transition-duration: 100ms;
transition-property: background-color, color;
}

.sidenav a:hover {
  background-color: #be2d92;

  color: white;
  cursor: pointer;
  transition-duration: 100ms;
  transition-property: background-color, color;
}

.rightnav {
display: flex;
}

.userbtn img{
height: 5vh;
width: 5vh;
}
.userbtn {
  font-size: 4vh; /* Use viewport width units */
  cursor:pointer;
  padding: 1vh;
  border-radius: 2vh;
  text-decoration: none;
  transition-duration: 600ms;
  transition-property: background-color, color;
  margin-right: 20px;

}

.userbtn:hover {
  background-color: #BE2D93;
  box-shadow: 0 8px 14px 0 #BE2D93; 
  color: white;
  cursor: pointer;
  transition-duration: 600ms;
  transition-property: background-color, color;
}

.pfp{
  background-image: url("/static/web_img/image.jpg");
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 2vh;
}





@media only screen and (max-width: 700px) {
  .sidenav {
  width: 100%;
  right: -100%;
  }
  .topmenu .menulogo{
    height: 7vh;
  }
  .menubtn, .userbtn{
    font-size: 2.5vh;
    margin-right: 0;
  }
  .userbtn img{
    height: 3vh;
    width: 3vh;
  }
  }
/*------------------------------------------------------- EINDE menu bar------------------------------------------------------*/

/* ______________________________________________________abbonementen______________________________________________________ */
   


/*------------------------------------------------------- EINDE abbonementen------------------------------------------------------*/





/* ______________________________________________________contact______________________________________________________ */

.txtbox {
  justify-content: center;
  margin: auto;
  width: 55%;
  height: auto;
  margin-top: 1pc;
  text-align: center;
  border-radius: 2pc;
  font-size: 1.3pc;
}

.C1{
  font-size: 2pc;
  font-weight: 600;
}
.C2{
  text-decoration-line: underline ;
  text-decoration-color: #BE2D93; 
  text-decoration-style: solid; /* this is default */
}
.CBgat{
  margin-top: 1.5pc;
}

.Cgat{
  margin-top: 3pc;
}

.Ctit{
  font-weight: bold;
  font-size: 1.7pc;
}

@media only screen and (max-width: 900px) {
  .txtbox {
font-size: 1pc;
width: 90%;
  }
  }
@media only screen and (max-width: 900px) {
  .C1 {
  font-size: 1.3pc;

    }
    }
/*------------------------------------------------------- EINDE contact------------------------------------------------------*/

/* ______________________________________________________Over ons______________________________________________________ */

.txtbox {
  justify-content: center;
  background-color: #fdeacc;
  margin: auto;
  width: 55%;
  height: auto;
  margin-top: 1pc;
  margin-bottom: 1pc;
  text-align: center;
  border-radius: 2pc;
  font-size: 1.3pc;

}
.Obox{
  margin-left: 3pc;
  margin-right: 3pc;
  margin-top: 2pc;
}

.Otit{
  font-weight: bold;
  font-size: 1.7pc;
}

.Oh{  
  font-weight: bold;
  font-size: 3pc;
text-align: center;
}

.Ocontainer {
  display: flex;

}

.OBanner{
  margin: auto;
  width: 40%;
  border-radius: 2pc;
}

.OcontainerTXT{
  justify-content: center;
  margin: auto;
  width: 40%;
  height: auto;
  margin-top: 1pc;
  margin-bottom: 1pc;
  text-align: center;
  border-radius: 2pc;
  font-size: 1.3pc;
}

.Oimg{
  width: 60%;
  border-radius: 2pc;
  margin-top: 1pc;
}
@media only screen and (max-width: 900px) {
  .txtbox {
font-size: 1pc;
width: 90%;
  }
  }

  @media only screen and (max-width: 900px) {
    .OBanner {
  font-size: 1.5pc;
  width: 100%;
    }
    }
@media only screen and (max-width: 900px) {
  .C1 {
  font-size: 1.3pc;

    }
    }
@media only screen and (max-width: 900px) {
  .Ocontainer {
    flex-direction: column;

    
      }
      }
  @media only screen and (max-width: 900px) {
    .OcontainerTXT {
      width: 90%;
      font-size: 1pc;
          
        }
        }
/*------------------------------------------------------- EINDE over ons------------------------------------------------------*/


#container {
  overflow:hidden;
  position:relative;
}
#hideMe {
  -webkit-animation: cssAnimation 5s forwards; 
  animation: cssAnimation 5s forwards;
}
@keyframes cssAnimation {
  0%   {opacity: 1;}
  90%  {opacity: 1;}
  100% {opacity: 0;}
}
@-webkit-keyframes cssAnimation {
  0%   {opacity: 1;}
  90%  {opacity: 1;}
  100% {opacity: 0;}
}



/* ______________________________________________________Certificaten______________________________________________________ */


.CertCollom {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center items horizontally */
  width: 100%; /* Ensure it takes full width */
}

.CertImg {
  width: 70%;
  margin-top: 1vh;
  margin-bottom: 2vh;
  box-shadow: 0px 10px 16px 6px #161f2e;
}
@media(max-width: 584px){
  .CertImg{
   width: 100%;
 }
}
/*------------------------------------------------------- EINDE Certificaten------------------------------------------------------*/

/* ______________________________________________________dashboard______________________________________________________ */

.dashBox{
  display: flex;
  justify-content: space-evenly;
}

.dashBoxTop{
  margin: 0 10px; /* Adjust the margin as needed */
  width: 40%;
  padding: 8px;
  border-radius: 1.5rem;
}

.dashBoxinside
{
  background-color: #ffffff9c;
  margin: 10px;
  height: 20vw;
  border-radius: 1.5rem;
  padding: 10px;
}

.dashTit {
  font-size: 2vw;
  text-align: center;
  border-bottom: solid;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
th, td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}
th {
  background-color: #f2f2f2;
}

/*------------------------------------------------------- EINDE dashboard------------------------------------------------------*/
/* ______________________________________________________Lessen______________________________________________________ */

.Weblogo {
  width: 20%;

}
.Hwbutton {
  border: none;
  display: inline-block; 
  margin: 1vw;
  width: 20%; /* Change width to a percentage */
  height: 5vw; /* Use viewport width units */
  border-radius: 1pc; 
  text-align: center;
  text-decoration: none;
  font-size: 2vw; /* Use viewport width units */
  cursor: pointer;
  transition: background-color 600ms, color 600ms;
}

.Hwbutton a {
  display: block;
  color: inherit; /* Ensures the link takes the button text color */
  text-decoration: none; /* Removes underline from the link */


}

.Hwbutton:hover {
  background-color: #BE2D93;
  box-shadow: 0 8px 14px 0 #BE2D93; 
  color: white;
  cursor: pointer;

}

/*------------------------------------------------------- EINDE Lessen------------------------------------------------------*/
