<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Ernesto Barbera — Textile & Print Design</title>

    <style>

        /* Modern Reset & Clean Typography */

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {

            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

            background-color: #111111;

            color: #ffffff;

            display: flex;

            justify-content: center;

            align-items: center;

            min-height: 100vh;

            padding: 20px;

        }


        /* The Centered Card Container */

        .card {

            background-color: #1a1a1a;

            border-radius: 16px;

            max-width: 420px;

            width: 100%;

            overflow: hidden;

            box-shadow: 0 20px 40px rgba(0,0,0,0.5);

            text-align: center;

            border: 1px solid #2a2a2a;

        }


        /* Hero Image */

        .hero-img {

            width: 100%;

            height: 260px;

            object-fit: cover;

            display: block;

        }


        /* Text Section */

        .content {

            padding: 30px 24px;

        }


        h1 {

            font-size: 1.5rem;

            font-weight: 600;

            letter-spacing: -0.02em;

            margin-bottom: 6px;

        }


        p.subtitle {

            font-size: 0.95rem;

            color: #a0a0a0;

            margin-bottom: 24px;

            text-transform: uppercase;

            letter-spacing: 0.08em;

        }


        /* Email Button */

        .btn {

            display: inline-block;

            width: 100%;

            padding: 14px 20px;

            background-color: #ffffff;

            color: #000000;

            text-decoration: none;

            font-weight: 600;

            font-size: 0.95rem;

            border-radius: 8px;

            transition: opacity 0.2s ease;

        }


        .btn:hover {

            opacity: 0.9;

        }

    </style>

</head>

<body>


    <div class="card">

        <!-- Replace the URL below with your own artwork or picture later -->

        <img class="hero-img" src="https://images.unsplash.com/photo-1579783902614-a3fb3927b675?auto=format&fit=crop&w=800&q=80" alt="Artwork Header">

        

        <div class="content">

            <h1>Ernesto Barbera</h1>

            <p class="subtitle">Textile & Visual Artist</p>

            

            <a href="mailto:design@ernestobarbera.com" class="btn">Get in Touch</a>

        </div>

    </div>


</body>

</html>