        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: url('../img/background.png') no-repeat center center/cover; /* Фон (1024x1024, растягивается на весь экран) */
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            overflow: hidden;
        }
        .center-image {
            position: absolute;
            width: 1024px;
            height: 1024px;
            opacity: 0;
            transform: scale(0.1);
            box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
            border-radius: 50px;
        }
 