<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
    <title>Document</title>
    <style>
        body, html {
            height: 100%;
            background-color: #f2f2f2;
            font-family: 'Open Sans', Helvetica, sans-serif;
        }
        .logo {
            height: 40px;
            position: absolute;
            top: calc(30% - 60px);
            left: calc(50% - 90px);
        }
        .box {
            width: 495px;
            height: 306px;
            box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
            position: absolute;
            top: 35%;
            left: calc(50% - 240px);
            background-color: #fff;
            text-align: center;
            color: #808080;
            padding: 0 85px;
            box-sizing: border-box;
        }
        .box h1 {
            font-size: 66px;
            font-weight: 200;
            margin-bottom: 10px;
        }
        .box p {
            font-size: 13px;
            margin-bottom: 40px;
        }
        .box .primary {
            color: #fff;
            background-color: #41b6e6;
            font-size: 13px;
            text-align: center;
            padding: 7px 30px;
            border-radius: 2px;
        }
        .box .primary:hover {
            cursor: pointer;
        }
    </style>
</head>
<body>
    <img class="logo" src="//static1.webdamdb.com/platform/images/webdam_logo_no_space.png" alt="webdam logo">
    <div class="box">
        <h1>404</h1>
        <p>The page you were trying to access cannot be found.</p>
        <a href="https://webdam.com" class="primary">Back Home</a>
    </div>
</body>
</html>