CINXE.COM
404 - Page not found
<!DOCTYPE html> <html> <head> <title>404 - Page not found</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="preconnect" href="https://fonts.gstatic.com"> <link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,700;1,400&display=swap" rel="stylesheet"> <style> * { box-sizing: border-box; } body { margin: 0; padding: 0; font-family: 'Open Sans', sans-serif; } .content-container { width: calc(100% - 15px); height: calc(100vh - 15px); text-align: center; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; display: flex; justify-content: center; align-items: center; background: #fff; box-shadow: 0px 2px 2px rgba(0, 0, 0, .16); } h1 { font-weight: 700; } p { font-weight: 400; } .text-block { width: 100%; padding: 15px 0; } .english { font-family: 'Open Sans', sans-serif; font-style: italic; font-variant: normal; font-size: 13px; } .text-holder { width: 100%; } @media screen and (max-width: 767px) { .content-container { width: calc(100% - 10px); height: calc(100vh - 10px); } .left-block, .right-block { width: 95%; margin-left: 2.5%; float: unset; padding: 30px 0; } .left-block::after { content: ""; position: absolute; width: 15%; border-top: 2px solid #323232; left: 42.5%; } } @media screen and (min-width: 768px) and (max-width: 991px) { .content-container { width: calc(100% - 15px); height: calc(100vh - 15px); } .left-block::after { content: ""; position: absolute; width: 10%; border-top: 2px solid #323232; left: 45%; } } </style> </head> <body> <div class="content-container"> <div class="text-holder"> <img src="/Static/images/broken-document.png" style="max-height: 120px; max-width: 100%" /> <div class="text-block"> <p>De inhoud die je probeerde te bereiken is niet gevonden of bestaat niet.</p> </div> <div class="text-block"> <a href="/" alt="Klik hier om naar de webshop te gaan" style="display: inline-block; background: #333; padding: 10px; color: #fff; text-decoration: none; border-radius: 5px; text-transform: uppercase; font-size: 13px; font-weight: bold;">Klik hier om naar de webshop te gaan</a> </div> <div class="text-block"> <p class="english">The content you tried to reach was not found or does not exist.</p> <p class="english">Click on the button above to navigate back to the webshop</p> </div> </div> </div> </body> </html>