<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Contact Us</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 0;

            padding: 0;

        }

        .container {

            max-width: 600px;

            margin: 50px auto;

            padding: 20px;

            border: 1px solid #ccc;

            border-radius: 5px;

            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

        }

        label {

            display: block;

            margin-bottom: 10px;

        }

        input[type="text"],

        textarea {

            width: 100%;

            padding: 10px;

            margin-bottom: 20px;

            border-radius: 5px;

            border: 1px solid #ccc;

            resize: none;

        }

        input[type="submit"] {

            background-color: #007bff;

            color: #fff;

            border: none;

            padding: 10px 20px;

            cursor: pointer;

            border-radius: 5px;

        }

        input[type="submit"]:hover {

            background-color: #0056b3;

        }

    </style>

</head>

<body>


<div class="container">

    <h2>Contact Us</h2>

    <form action="mailto:emanubrain@gmail.com" method="post" enctype="text/plain">

        <label for="name">Name:</label>

        <input type="text" id="name" name="name" required>

        <label for="email">Email:</label>

        <input type="text" id="email" name="email" required>

        <label for="message">Message:</label>

        <textarea id="message" name="message" rows="5" required></textarea>

        <input type="submit" value="Submit">

    </form>

</div>


</body>

</html>