/* Algemene stijlen */
html {
     background-color: aquamarine;
   }
   
   body {
     position: relative;
     margin: 0 auto;
     font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
     font-size: medium;
     padding: 0;
     max-width: 40rem; /* Zorg ervoor dat de inhoud niet te breed wordt */
   }
   
   header {
     background-color: rgb(92, 220, 220);
     border-color: rgb(233, 33, 255);
     border-radius: 15px;
     border-style: solid;
     border-width: 5px;
     padding: 10px;
     display: flex;
     justify-content: space-between; /* Zorgt voor een nette uitlijning van de tekst en afbeelding */
     align-items: center;
   }
   
   header h1 {
     color: rgb(233, 33, 255);
     margin: 0;
   }
   
   header a {
     text-decoration: none;
     color: rgb(233, 33, 255);
     margin: 10px;
     font-weight: bold;
   }
   
   img {
     margin-top: 20px;
     border-color: rgb(233, 33, 255);
     border-radius: 15px;
     border-style: solid;
     border-width: 5px;
   }
   
   main {
     margin-top: 20px;
     background-color: aqua;
     border-color: rgb(233, 33, 255);
     border-radius: 15px;
     border-style: solid;
     border-width: 5px;
     padding: 0.75rem;
   }
   
   h2, h3 {
     color: rgb(233, 33, 255);
   }
   
   section {
     display: flex;
     justify-content: space-between;
     margin-bottom: 20px;
   }
   
   section img {
     max-width: 200px; /* Zorgt ervoor dat de afbeelding niet te groot wordt */
     margin-left: 20px;
   }
   
   section div {
     flex: 1;
   }
   
   @media (max-width: 768px) {
     /* Op kleinere schermen worden de elementen onder elkaar weergegeven */
     header {
       flex-direction: column;
       text-align: center;
     }
   
     section {
       flex-direction: column; /* Zet de tekst en afbeelding onder elkaar */
       align-items: center; /* Centraal uitlijnen */
     }
   
     section img {
       margin: 10px 0;
       max-width: 80%; /* Zorgt ervoor dat de afbeelding niet te groot is */
     }
   
     header a {
       margin: 5px;
     }
   
     main {
       padding: 1rem;
     }
   }
   