순수 html으로 맛깔나는 페이지 하나 만들어 달라고 하니까 진짜 여태 ai에서는 듣도보도 못한 디자인을 만들어버리는데??

아래 코드 복붙해서 여기에 돌려봐라



<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Alien Welcome Page</title>
    <style>
        /* Reset and global styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            font-family: 'Arial', sans-serif;
            color: #ffffff;
        }

        /* Background and Main Layout */
        body {
            background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        /* Heading */
        h1 {
            font-size: 4em;
            margin-bottom: 20px;
            color: #79c7e3;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Paragraph */
        p {
            font-size: 1.3em;
            margin-bottom: 30px;
            color: #d4e6f1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 35px;
            margin: 10px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        }

        .btn:hover {
            background: rgba(255, 255, 255, 0.4);
            border-color: rgba(255, 255, 255, 0.8);
            box-shadow: 0 15px 20px rgba(0, 0, 0, 0.5);
            transform: translateY(-3px);
        }

        /* Alien Theme Elements */
        .alien {
            absolute;
            top: 10%;
            left: 10%;
            width: 150px;
            height: 150px;
            background: url('https://i.imgur.com/W4zU9Bu.png') no-repeat center center / contain;
            animation: float 3s ease-in-out infinite;
        }

        .planet {
            absolute;
            bottom: 10%;
            right: 10%;
            width: 200px;
            height: 200px;
            background: url('https://i.imgur.com/Ofy7jOA.png') no-repeat center center / contain;
            animation: spin 10s linear infinite;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(-10px);
            }
            50% {
                transform: translateY(10px);
            }
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Footer */
        footer {
            absolute;
            bottom: 10px;
            width: 100%;
            text-align: center;
            font-size: 0.9em;
            color: rgba(255, 255, 255, 0.7);
        }

        footer a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <h1>Welcome to the Alien World</h1>
    <p>Explore the beauty of the universe beyond the stars.</p>
    <a href="#" class="btn">Discover Planets</a>
    <a href="#" class="btn">Contact Aliens</a>
    <div class="alien"></div>
    <div class="planet"></div>
    <footer>
        &copy; 2024 by <a href="https://example.com" target="_blank">Your Name</a>. Created with love and stardust.
    </footer>
</body>
</html>


- dc official App