Тапалка

by Sergey khorev

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 {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background-color: black;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .ghost-logo {
            margin-top: 30px;
        }

        .ghost-logo img {
            width: 100px;
        }

        .username {
            font-size: 24px;
            margin-top: 10px;
        }

        .coin-count {
            font-size: 36px;
            margin-top: 20px;
        }

        .bar-container {
            margin: 20px auto;
            width: 80%;
            height: 5px;
            background-color: grey;
            position: relative;
        }

        .bar {
            height: 100%;
            width: 80%;
            background-color: white;
        }

        .game-container {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            height: 120px;
            background-color: #2d2d2d;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: space-around;
        }

        .game-name {
            font-size: 20px;
        }

        .play-button {
            background-color: yellow;
            color: black;
            padding: 10px 20px;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 18px;
        }

        .footer {
            position: fixed;
            bottom: 0;
            width: 100%;
            /* background-color: #1a1a1a; */
            padding: 10px 0;
            display: flex;
            justify-content: space-around;
        }

        .footer img {
      ...