<!DOCTYPE html>

<html lang="zh-CN">

<head>

    <meta charset="UTF-8">

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

    <title>Hello Mac</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }


        body {

            height: 100vh;

            display: flex;

            justify-content: center;

            align-items: center;

            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

        }


        .greeting {

            font-size: clamp(2rem, 8vw, 5rem);

            font-weight: 700;

            color: white;

            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

            animation: fadeIn 1.5s ease-in-out;

        }


        @keyframes fadeIn {

            0% {

                opacity: 0;

                transform: translateY(30px);

            }

            100% {

                opacity: 1;

                transform: translateY(0);

            }

        }

    </style>

</head>

<body>

    <h1 class="greeting">hello mac ~</h1>

</body>

</html>