<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>No</title>

    <style>

        body {

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            margin: 0;

            background-color: #000; /* Black background */

            color: #fff; /* White text */

        }

        h1 {

            font-size: 10vw; /* Scales with the screen size */

            font-weight: bold;

        }

    </style>

</head>

<body>

    <h1>NO</h1>

</body>

</html>