<!DOCTYPE html>

<html lang="fr">

<head>

    <meta charset="UTF-8">

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

    <title>Christian Lacroix</title>

    <style>

        body {

            margin: 0;

            padding: 0;

            background: url('landpage_CL.jpg') no-repeat center center fixed;

            background-size: cover;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            flex-direction: column;

        }

        .contact-link {

            margin-top: 20px;

            font-size: 18px;

            color: white;

            text-decoration: none;

            background: rgba(0, 0, 0, 0.6);

            padding: 10px 20px;

            border-radius: 5px;

        }

        .contact-link:hover {

            background: rgba(255, 255, 255, 0.3);

            color: black;

        }

    </style>

</head>

<body>

    <a class="contact-link" href="mailto:contact_cl@christian-lacroix.com">Contact</a>

</body>

</html>