/* WEB PANEL PROXY public CSS */
* {
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            min-height: 100%;
            font-family: Arial, sans-serif;
        }

        /* Главная */
        .home {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: #f5f5f5;
        }

        .show-button {
            width: min(90vw, 900px);
            height: min(45vh, 400px);

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 30px;
            background: #111;
            color: white;

            font-size: clamp(40px, 8vw, 100px);
            font-weight: bold;
            text-decoration: none;

            transition: transform 0.15s ease, background 0.15s ease;
        }

        .show-button:hover {
            background: #222;
            transform: scale(1.02);
        }

        .show-button:active {
            transform: scale(0.98);
        }

        /* /kovrik */
        .kovrik {
            min-height: 100vh;
            width: 100%;

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 20px;
            background: #000;
        }

        .kovrik img {
            display: block;
            max-width: 100%;
            max-height: 95vh;
            width: auto;
            height: auto;
        }