<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Centered Image</title>

    <style>

        /* Set background color */

        body {

            background-color: #d4c5a4;

            margin: 0; /* Remove default margins */

            display: flex; /* Enable flexbox */

            justify-content: center; /* Horizontally center content */

            align-items: center; /* Vertically center content */

            height: 100vh; /* Full viewport height */

            overflow: hidden; /* Avoid scrolling if any */

        }


        /* Style the image */

        img {

            max-height: 75vh; /* Occupy 75% of viewport height */

            max-width: 75vh; /* Maintain square aspect ratio */

        }

    </style>

</head>

<body>

    <img src="mailnuke.png" alt=“Nuked”>

</body>

</html>