<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About Tanki</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            color: #333;
        }

        nav {
            background-color: #333;
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .logo {
            margin-left: 20px;
        }

        .logo img {
            max-height: 50px;
        }

        nav ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            text-align: center;
        }

        nav ul li {
            display: inline;
            margin-left: 20px;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            transition: background-color 0.3s;
        }

        nav ul li a:hover {
            background-color: #555;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.8); /* Прозрачный белый фон */
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            background-image: url('https://image.slidesdocs.com/responsive-images/background/grass-cartoon-powerpoint-background_3d94a6801a__960_540.jpg');
            background-size: cover;
            background-position: center;
        }

        h1 {
            color: #fff; /* Белый цвет текста */
        }

        p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: bold; /* Делаем текст жирным */
            color: #fff; /* Белый цвет текста */
        }

        .back-button {
            background-color: #007bff;
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
        }

        .back-button:hover {
            background-color: #0056b3;
        }
    </style>
</head>
<body>
    <nav>
        <div class="logo">
            <img src="logo.png" alt="Tanki Logo">
        </div>
        <ul>
            <li><a href="/about">About</a></li>
            <li><a href="/game">Game</a></li>
            <li><a href="/link">Link</a></li>
        </ul>
    </nav>
    <a href="/" class="back-button">Back</a>
    <div class="container">
        <h1>About Tanki</h1>
        <p><strong>This is where you can provide information about your game "Tanki" including its features, development team, and any other relevant details.</strong></p>
        
        <!-- Additional content about the game -->
    </div>
</body>
</html>