/*3D Сцена в калькуляторе*/
        
        .scene {
            width: 300px;
            height: 110px;
            perspective: 900px;
            padding: 60px;
            margin: 0px;
            outline: 2px solid white;
        }
        
        .cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transform: rotateX(-10deg) rotateY(-55deg);
            transition: transform 0.5s ease;
        }

        
        .cube-face {
            position: absolute;
            outline: 1px solid black;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
            background-repeat: no-repeat;
            backdrop-filter: blur(10px);
            background: url('../media/sh1.JPG');
            opacity: 70%;
            
        }
        
        /* Передняя грань */
        #front {
            transform: translateZ(200px) translateY(50px);
            background-size: cover;
        }
        

        
        /* Правая грань */
        #right {
            /*transform: rotateY(90deg) translateZ(100px);*/
            transform: rotateY(90deg) translateZ(100px) translateY(50px);
            background-size: cover;
        }
        
        
        /* Верхняя грань */
        #top {
            /*transform: rotateX(90deg) translateZ(50px);*/
            transform: rotateX(90deg) translateZ(150px);
            background-size: cover;

        }
        

        
