/*dit is allemaal voor onze hamburger menu*/
*{
  margin: 0;
}

#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}
.menu__btn {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-image:linear-gradient(#5333ed, #2cd4d9 ) ;
  box-shadow: 2px 2px 6px #5333ed;
  transition-duration: .25s;
}
.menu__item {
  display: block;
  padding: 12px 24px; 
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #2cd4d9;
}

 /*dit is voor de blauwe balk aan de bovenkant*/

.balk{
  margin: 0;
  padding: 0;

}

/*dit is ook voor onze hamburger menu*/

.hamburger-menu{
  background-image: linear-gradient(to right, #5333ed, #2cd4d9);
  height: 40px;
  position: sticky;
  position:-webkit-sticky ;
  top:0;
}

/*dit is voor de titel werenfridus*/

.titel{
  float:right;
  margin-right: 20px;
  font-family: 'Brandon Text', sans-serif;
  color: white;
}

/*dit is voor onze background*/

body {
  background-image:url(Werenfridus2.jpg) ;
  max-width: 100%; height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/*dit is voor onze informatie in het midden van het beeld*/

.textindex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 80px;
  margin-top: 50px;
}

.textindex2{
  border-radius: 8px;
  background-image: linear-gradient(144deg,#5333ed, #2cd4d9);
  padding: 20px 40px;
  height: 490px;
  width: 250px;
}
.textindex2 h1 {
  color: white;
  font-family: 'Brandon Text', sans-serif;
}
.textindex2 p{
  color: white;
  font-family:'Brandon Text', sans-serif;
  font-size: large;
}




 /*dit is voor onze button waar je tickets kunt kopen*/

/*Knopje*/
.button-64 {
  background-image: linear-gradient(144deg,#5333ed, #2cd4d9);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  touch-action: manipulation;
  cursor: pointer;
  margin: auto;
  margin-top: 200px;
  scale: 200%;
  position: sticky;
  position: -webkit-sticky;
  top:10%;
  z-index: +2;

 
}
.buttonds {
 text-decoration: none;
}


.button-64 span {
  background-color: rgb(5, 6, 45);
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;

}

.button-64:hover span {
  background: none;

}

@media (min-width: 768px) {
  .button-64 {
    font-size: 24px;
    min-width: 196px;
  }
}

/*voor de ronde randen om de plaatjes*/

#imgschool{
  border-radius:8px ;

}

