<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>Pink Aware - Coming Soon!</title>

    <style>

        body {

            background-color: lightpink;

            font-family: Arial, sans-serif;

            display: flex;

            align-items: center;

            justify-content: center;

            height: 100vh;

            margin: 0;

            color: darkpink;

            text-align: center;

        }


        h1 {

            font-size: 2.5em;

        }


        p {

            font-size: 1.5em;

        }

    </style>

</head>

<body>

    <div>

        <h1>Website Arriving Soon!</h1>

        <p>Stay tuned for something amazing at PinkAware.co.uk.</p>

    </div>

</body>

</html>