<!DOCTYPE html>
<html lang="ru">

<head>



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

    <!-- Tailwind CSS CDN -->
    <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">

    <!-- Fontawesome CDN -->
    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
</head>

<body>
    <!-- Header Section -->
    <header class="bg-gray-800 text-white py-4">
        <div class="container mx-auto flex justify-between items-center">
            <h1 class="text-2xl font-bold">Название вашего сайта</h1>
            <nav>
                <ul class="flex space-x-4">
                    <li><a href="#" class="hover:text-gray-300">Главная</a></li>
                    <li><a href="#" class="hover:text-gray-300">О нас</a></li>
                    <li><a href="#" class="hover:text-gray-300">Контакты</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="hero bg-cover bg-center h-screen flex items-center"
        style="background-image: url('https://source.unsplash.com/featured/1280x720/?culture');">
        <div class="container mx-auto text-center">
            <h2 class="text-4xl text-white font-bold">Исследуйте культуру</h2>
            <a href="#" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-4 inline-block">Узнать
                больше</a>
        </div>
    </section>

    <!-- Feature Section -->
    <section class="bg-gray-100 py-8">
        <div class="container mx-auto grid grid-cols-3 gap-4">
            <!-- Feature Card 1 -->
            <div class="bg-white p-4 rounded shadow-md text-center">
                <i class="fas fa-globe text-4xl text-blue-500"></i>
                <h3 class="text-lg font-bold mt-2">Мировая культура</h3>
                <p class="mt-2">Изучайте разнообразие культур мира</p>
            </div>
            <!-- Feature Card 2 -->
            <div class="bg-white p-4 rounded shadow-md text-center">
                <i class="fas fa-paint-brush text-4xl text-blue-500"></i>
                <h3 class="text-lg font-bold mt-2">Искусство</h3>
                <p class="mt-2">Погрузитесь в мир искусства и творчества</p>
            </div>
            <!-- Feature Card 3 -->
            <div class="bg-white p-4 rounded shadow-md text-center">
                <i class="fas fa-music text-4xl text-blue-500"></i>
                <h3 class="text-lg font-bold mt-2">Музыка</h3>
                <p class="mt-2">Откройте для себя музыкальные традиции</p>
            </div>
        </div>
    </section>

    <!-- Individual Feature Sections -->
    <section class="bg-gray-200 py-8">
        <!-- Feature Section 1 -->
        <div class="container mx-auto flex items-center">
            <img src="https://source.unsplash.com/featured/1280x720/?culture" alt="Culture" class="w-1/2">
            <div class="w-1/2 p-4">
                <h3 class="text-2xl font-bold">Мировая культура</h3>
                <p class="mt-4">Изучайте разнообразие культур мира и погружайтесь в их уникальные особенности.</p>
                <a href="#" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-4 inline-block">Узнать
                    больше</a>
            </div>
        </div>
        <!-- Feature Section 2 -->
        <div class="container mx-auto flex items-center mt-8">
            <div class="w-1/2 p-4">
                <h3 class="text-2xl font-bold">Искусство</h3>
                <p class="mt-4">Погрузитесь в мир искусства и творчества, откройте для себя новые художественные направления.</p>
                <a href="#" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-4 inline-block">Узнать
                    больше</a>
            </div>
            <img src="https://source.unsplash.com/featured/1280x720/?art" alt="Art" class="w-1/2">
        </div>
    </section>

    <!-- Testimonial Section -->
    <section class="bg-gray-100 py-8">
        <div class="container mx-auto grid grid-cols-2 gap-4">
            <div class="bg-white p-4 rounded shadow-md">
                <p>"Отличный ресурс для изучения культур мира!"</p>
                <p class="text-right">- Иван Иванов, исследователь</p>
            </div>
            <div class="bg-white p-4 rounded shadow-md">
                <p>"Сайт помог мне расширить свои знания об искусстве"</p>
                <p class="text-right">- Мария Петрова, художник</p>
            </div>
        </div>
    </section>

    <!-- Footer Section -->
    <footer class="bg-gray-800 text-white py-4">
        <div class="container mx-auto flex justify-between items-center">
            <p>&copy; 2021 Название вашего сайта. Все права защищены.</p>
            <div>
                <a href="#" class="text-white hover:text-gray-300 mx-2"><i class="fab fa-facebook"></i></a>
                <a href="#" class="text-white hover:text-gray-300 mx-2"><i class="fab fa-twitter"></i></a>
                <a href="#" class="text-white hover:text-gray-300 mx-2"><i class="fab fa-instagram"></i></a>
            </div>
        </div>
    </footer>

    <!-- Fontawesome CDN -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/js/all.min.js"></script>
</body>

</html>