/*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;
  }

/*balk aan de bovenkant*/

  .balk{
    margin: 0;
    padding: 0;
  
  }

/*hamburger menu*/

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

/*titel werenfridus*/

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

/*de achtergrondfoto*/

  body {
    background-image:url(schoolaula.jpg) ;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }  

/*foto op de voorgrond*/

  #sneeuwschool {
    border-radius: 8px;
    max-width: 600px;
    max-height:250px;
  }

/*de tekst in het midden*/

  .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: 210px;
    width: 500px;
    
  }
  .textindex2 h1 {
    color: white;
    font-family: 'Brandon Text', sans-serif;
  }
  .textindex2 p{
    color: white;
    font-family:'Brandon Text', sans-serif;
    font-size: large;
  }