<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hoş Geldiniz</title>
    <style>
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #fff;
        }

        .flag-container {
            background-color: #e30a17;
            width: 100%;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .crescent {
            position: relative;
            width: 15%;
            height: 15%;
            background-color: #fff;
            border-radius: 50%;
        }

        .crescent::before {
            content: "";
            position: absolute;
            top: 10%;
            left: 15%;
            width: 85%;
            height: 85%;
            background-color: #e30a17;
            border-radius: 50%;
        }

        .star {
            position: relative;
            margin-left: 10px;
            width: 5%;
            height: 5%;
            background-color: #fff;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        .welcome-message {
            margin-top: 20px;
            font-size: 24px;
            color: #333;
        }
    </style>
</head>
<body>
    <div class="flag-container">
        <div class="crescent"></div>
        <div class="star"></div>
    </div>
    <div class="welcome-message">
        Hoş Geldiniz!
    </div>
</body>
</html>