@font-face {
    font-family: 'towflow';
    src: url('AmpleSoftPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'towflowbold';
    src: url('AmpleSoftPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('Roboto-MediumItalic.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}


body, html {
    margin: 0;
    padding: 0;
    height: 99%;
    background-color: #E4F0FC;
    overflow:hidden; 
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0; /* Verwijder eventuele standaard marges */
    text-align: center;
    padding-top:10px;
    width:100%;
}

.header { 
    background-color: #ffffff;
    padding: 20px;
    text-align: center;

}


.towtxt { 
    font-family: towflowbold; 
    font-size: 65px;
    color:#151213;
}  

.content-area {
    flex-grow: 1; /* Laat de content area groeien om ruimte te vullen */
    background-image: url('img/tpwbanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; /* Voorkom herhaling van de achtergrond */
    height:98%;
    border-top:2px solid #0D0F20;
}

.overlay {
    position: absolute;
    top: [HeaderHoogte]px; /* Vervang [HeaderHoogte] met de daadwerkelijke hoogte van je header */
    left: 0;
    padding-left:20%;
    padding-right:20%;
    font-family: 'Roboto', sans-serif; /* Gebruikt Roboto met fallback */
    width: 100%;
    min-height: 120px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}


.txtbanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.txtbanner p {
    max-width: 80%;
}

.footer { 
    background-color: #FFA306;
    color: #ffffff;
    padding: 10px 5px; /* Aangepast om iets meer ruimte boven en onder te geven */
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    font-family: towflowbold;
    font-size: 20px;
    border-top:1px solid #0D0F20;
}

.footer-quote {
    font-size: 13px;
    font-family: 'Roboto', sans-serif; /* Gebruikt Roboto met fallback */
    color: #0D0F20; 
    font-weight: 500; /* Medium, komt overeen met Roboto-MediumItalic */
    font-style: italic; /* Cursief */
    display: block;
    margin-top: 0px;
} 

 
 

 
 