body {
    background-image: linear-gradient(to right, rgb(61, 127, 224) 0%, rgb(104, 104, 165) 100%);
    display: flex;
    flex-direction: column;
    background-size: cover;
    transition: background-image 1s ease-in-out;
}
.greyButton {
    background-color: #c8c9c9; /* Green */
    border: none;
    color: #1a2334;
    padding: 0.8em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0px;
    cursor: pointer;
    border-radius: 20px;

}
h2 {
    /*background-color: #1a2334; /* Donkere achtergrondkleur */
    color: #000000; /* blauwe tekstkleur */
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 1.5em;
    margin: 10px 0;
   
}

h3 {
    background-color: #1a2334; /* Donkere achtergrondkleur */
    color: #7fffd4; /* blauwe tekstkleur */
    padding: 0.1em;
    border-radius: 5px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 1.5em;
    margin: 0;
    border: 1px solid #90caf9; /* Blauw */
}

.TextArea {
    background-color: #93b0c480;
    padding: 15px;
    border: 1px solid #90caf9; /* Blauw */
    border-radius: 5px;
      max-width: 100%; /* Zorgt ervoor dat de container niet breder wordt dan de beschikbare ruimte */
    overflow-wrap: break-word; /* Breekt woorden correct af */
    white-space: normal; /* Zorgt ervoor dat tekst niet buiten de container springt */
}

.TextArea input[type=text] {
    float: right;
    padding: 6px;
    border: none;
    margin-right: 16px;
    font-size: 17px;
}

.SideArea {
    background-color: #e3f2fd; /* Lichtblauw */
    color: #0d47a1; /* Donkerblauw */
    border: 1px solid #90caf9; /* Blauw */
    padding: 15px;
    border-radius: 5px;
    font-size: 0.7em;
}