﻿html
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Работа в Европе</title>
    <style>
        body, html { margin: 0; padding: 0; height: 100%; width: 100%; }
        body {
            font-family: Arial, sans-serif;
            background: url('1.png') no-repeat center center fixed;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .wrapper {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .logo { max-width: 120px; margin-bottom: 20px; }
        h1 { margin: 0 0 15px 0; font-size: 28px; }
        p { color: #666; font-size: 16px; margin-bottom: 30px; }
        
        .btn-container { display: flex; flex-direction: column; gap: 15px; }
        
        .btn {
            display: block;
            padding: 18px;
            border-radius: 50px;
            text-decoration: none !important; /* Убираем подчеркивание */
            font-weight: bold;
            font-size: 18px;
            color: white !important;
            transition: 0.3s;
        }
        .tg { background-color: #0088cc; }
        .wa { background-color: #25D366; }
        .btn:hover { opacity: 0.8; transform: scale(1.03); }
    </style>
</head>
<body>
    <div class="wrapper">
        <img src="logo.png" class="logo" onerror="this.style.display='none'">
        <h1>Работа в Европе</h1>
        <p>Рекрутинговое агентство. Оставь заявку и получи бесплатную консультацию!</p>
        
        <div class="btn-container">
            <a href="https://t.me" class="btn tg">Написать в Telegram</a>
            <a href="https://wa.me" class="btn wa">Написать в WhatsApp</a>
        </div>
    </div>
</body>
</html>