<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AwesomeWork</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: #f0f8ff;
            color: #333;
            height: 100vh;
        }

        #logo {
            max-width: 100%;
            height: auto;
        }

        h1 {
            font-size: 2em;
            margin: 20px 0 10px;
            color: #ff6347;
        }

        h2 {
            font-size: 1.5em;
            margin: 0 0 20px;
            color: #4682b4;
        }

        .coming-soon {
            font-size: 2.5em;
            font-weight: bold;
            color: #32cd32;
            margin-top: 30px;
        }

        @media (max-width: 600px) {
            h1 {
                font-size: 1.5em;
            }

            h2 {
                font-size: 1.2em;
            }

            .coming-soon {
                font-size: 2em;
            }
        }
    </style>
</head>
<body>
    <img id="logo" src="/logo.png" alt="AwesomeWork Logo">
    <h1>Stop sending resumes into a black hole.</h1>
    <h2>We list jobs where we can refer qualified people.</h2>
    <div class="coming-soon">Coming August 2024!</div>
</body>
</html>